<!-- 
var message="Right click disabled";

function clickIE4(){
if (event.button==2){
//alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
//alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

//document.oncontextmenu=new Function("alert(message);return false")
document.oncontextmenu=new Function("return false")

function MM_openBrWindow(strURL) { 
	var intW=780
	var intH=550
  	var intLeft = Math.round((screen.availWidth - intW) / 2);
  	var intTop = Math.round((screen.availHeight - intH) / 2);
  	window.open(strURL,'','left='+intLeft+',top='+intTop+',width='+intW+',height='+intH);
}
/*
var iWidth=780;
var iHeight=550;
var intLeft = Math.round((screen.availWidth - iWidth) / 2);
var intTop = Math.round((screen.availHeight - iHeight) / 2);
var win=window.location;
if (document.all){
	if (document.body.clientWidth!=780 || document.body.clientHeight!=550){
		window.location="/CloseWindow.htm";
		var newwin=window.open(win,'','left='+intLeft+',top='+intTop+',width='+iWidth+',height='+iHeight);
	}

}
else if (document.layers||document.getElementById){
	if (window.innerWidth!=780 || window.innerHeight!=550){
		window.location="/CloseWindow.htm";
		var newwin=window.open(win,'','left='+intLeft+',top='+intTop+',width='+iWidth+',height='+iHeight);
	}
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=Netscape4;
}*/
//document.oncontextmenu=new Function("alert(message);return false")
document.oncontextmenu=new Function("return false")

// --> 

