function right(e) {
var msg = "All Rights reserved by www.pushtiwebindia.com. Design is copyright by DIGIMARC. Contact on 022 32521466.";
if (navigator.appName == 'Netscape' && e.which == 3) {
alert(msg); 
return false;
}
else
if (navigator.appName == 'Microsoft Internet Explorer' &&
event.button==2) {
alert(msg); 
return false;
}
return true;
}
document.onmousedown = right;

