
var message="";
document.onselectstart=new Function ("return false")
function clickIE() {
	if (document.all) { return false;}
}
function clickNS(e) {
 if (navigator.appName == 'Netscape') {
		txt =document.getSelection();
		if (txt.length > 0 ) {window.find(' ');return false;}
		else
		return true;
  }
}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickIE;
}
else{
document.onmouseup=clickNS;document.oncontextmenu=clickNS;
}
document.oncontextmenu=new Function("return false")
function disableselect(e){
return false
}
function reEnable(){
return true
}
if (window.sidebar){ 
document.onmousedown=clickNS
document.onclick=reEnable
}

