///anti copy protection
function disableselect(e){ return false; }
		function reEnable(){ return true; }
		document.onselectstart = new Function ("return false");
		if(window.sidebar){
			document.onmousedown = disableselect;
			document.onclick = reEnable;
		}
		
///Window Pop Up
function Popup(url) {
	var width = 583;
	var height = 460;
	var left = (screen.width-width)/2;
	var top = (screen.height*0.8-height)/2;
		
	newWin = window.open(url, "popup", "width="+width+",height="+height+",toolbar=no,location=no,directories=no,resizable=no,status=no,menubar=no,screenX=100,screenY=100, left="+left+", top="+top);
}


///Right Click

function clickIE() {if (document.all) {(message);return false;}}

function clickNS(e) {if 

(document.layers||(document.getElementById&&!document.all)) {

if (e.which==2||e.which==3) {(message);return false;}}}

if (document.layers) 

{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}

else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function('return false')