// JScript File

function openpopup(aURL){
			w = window.open(aURL,'newWindow','scrollbars=1,resizable=1,menubar=0,location=0,status=0,directories=0,toolbar=0,width=800,height=600');
			setTimeout('w.focus()', 500)
			w.focus();
}

function changeAdminStyleOver(what) {
       what.style.border="1px";
       what.style.borderStyle="solid";
       what.style.borderColor="red";
       what.style.cursor="hand";
       
}

function changeAdminStyleOut(what) {
       what.style.border="1px";
       what.style.borderStyle="dashed";
       what.style.borderColor="red";
       what.style.cursor="default";
}


