document.write ("<LINK REL=stylesheet TYPE='text/css' HREF='textcontrol.css'>");

function showStat(EVE){
	window.status = EVE;
	return true;
}

//onload = launchRemote;
function launchRemote(URLname, w, h) {
			popUpWin = window.open(URLname, "", "width=" + h + ",height=" + w + ",menubar=no,toolbar=no,scrollbars=yes,resizable=yes");
 			if (popUpWin.opener == null) {
				popUpWin.opener = window;
			}else
			    popUpWin.focus();
			//return true;
}

function Guard(){
if (event.button==2)
	window.alert('Hello');
}

document.onmousedown = Guard
