/**OPEN ADMIN
/*******************************************/
function openMySite()
{
	mmsite=window.open("/admin", "_self");
	mmsite.focus();
}

function mouseDown(e) {
	 var ctrlPressed=0;
	 var altPressed=0;
	 var shiftPressed=0;
	 if (parseInt(navigator.appVersion)>3) {
	  if (navigator.appName=="Netscape") 
	   altPressed  =e.altKey;
	  else
	  	altPressed  =event.altKey;	  
	  
	  if (altPressed) 
		openMySite();
	 }
	 return true;
	}
	if (parseInt(navigator.appVersion)>3) {
	 document.onmousedown = mouseDown;
	 if (navigator.appName=="Netscape") 
	  document.captureEvents(Event.MOUSEDOWN);
}
