//Disable select-text script (IE4+, NS6+)- By Andy Scott
//Exclusive permission granted to Dynamic Drive to feature script
//Visit http://www.dynamicdrive.com for this script

function disableselect(e){
return false;
}

function reEnable(){
return true;
}

//if IE4+
document.onselectstart=new Function ("return false");

//if NS6
if (window.sidebar){
document.onmousedown=disableselect;
document.onclick=reEnable;
}

//This script and many more are available free online at -->
//The JavaScript Source!! http://javascript.internet.com -->

//
function right(e) {
var msg = "@ CopyRight: KALAMANCH.COM !! ";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg);
return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(msg);
return false;
}
else return true;
}

function ChkRt() 
  {
  if(document.images)
    {
    for(i=0;i < document.images.length;i++)
      {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
      }
    }
  }
