<!--
function disabletext(e){
return false
}

function reEnable(){
return true
}


function nrc(e) {
   if (bNS && e.which > 1){
      return false
   } else if (bIE && (event.button >1)) {
     alert(am)
     return false;
   }
}


//if the browser is IE4+
document.onselectstart=new Function ("return false")
document.onkeydown=new Function ("return false")
window.captureEvents(Event.MOUSEDOWN);

//if the browser is NS6
if (window.sidebar){
	document.onmousedown=disabletext	
	document.onclick=reEnable
}



//-->
