function stopthief(ie) { var warning = "Right Click is disable in this Page";
if (navigator.appName == 'Netscape' && ie.which == 3) {
alert(warning);
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) {
alert(warning);
return false;
}
return true;
}
document.onmousedown = stopthief;