//kang@goenm.com
//Please change ONLY sitename

function right(e) {
var sitename = "SiempreVida.com" 
var message =  "All information on the " + sitename + " website is protected under U.S. copyright law.\n" +
		       " Please restrict use of materials from this site to your personal use and/or to share with friends and family." +
		       " Please contact site administrator if you have any question, nosferatusv2@houston.rr.com." + 
		       " All images are the both intellectual and physical property of Mitom Enterprises";

if (navigator.appName == 'Netscape' && 
(e.which == 3 || e.which == 2)) {
alert(message);
return false; 
}
else if (navigator.appName == 'Microsoft Internet Explorer' && 
(event.button == 2 || event.button == 3)) {
alert(message);
return false;
}
return true; //left click
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;