//<script>
// Manager Logon
function document_onkeyup() {
	pKeyCode = event.keyCode;
	pAlt = event.altKey;
	pCtrl = event.ctrlKey;
	pShift = event.shiftKey;
	if (pKeyCode == 55 && pAlt && pCtrl && !pShift) {
		window.open("admin/default.asp","miniWindow","height=580,left=" + Math.ceil((window.screen.availWidth - 760)/2) + ",top=" + Math.ceil((window.screen.availHeight - 520)/2) + ",width=890,scrollbars=1,channelmode=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,status=1,titlebar=1,toolbar=0",0);
	}
}

document.onkeyup = document_onkeyup;

//go button
				menu_go = new Image(56,21);
				menu_go.src = "iface/go_off.gif";
				menu_gohi = new Image(56,21);
				menu_gohi.src = "iface/go_on.gif";
				
				menu_quickgo = new Image(56,21);
				menu_quickgo.src = "iface/quickgo_off.gif";
				menu_quickgohi = new Image(56,21);
				menu_quickgohi.src = "iface/quickgo_on.gif";
				
function hiLite(imgDocID, imgObjName, comment) {
	document.images[imgDocID].src = eval(imgObjName + ".src");
	window.status = comment; return true;
}


// text submit
function doSubmit ( selectedtype )
{
  //document.form1.search.value = selectedtype ;
  document.form1.submit() ;
}

function doMenuSubmit ( selectedtype )
{
  //document.form1.search.value = selectedtype ;
  document.quickmenu.submit() ;
}


// pop form
function popForm(sFormName, sDesc)
{
	var params;
	var w_width = 550;
	var w_height = 350;
	params = "WIDTH=" + w_width;
	params += ",HEIGHT=" + w_height;
	params += ",LEFT=" + String((window.screen.Width/2) - (w_width/2));
	params += ",TOP=" + String((window.screen.Height/2) - (w_height/2));
	//debug
	params += ",SCROLLBARS=no";
	iswindowopen = 1;
	window_handle = window.open(sFormName, sDesc, params);
	window_handle.focus();
	return false;
}
//-->
