var message = "Copyright 2005 by Dolls Place Restaurant. The right click feature has been disabled to prevent unauthorized duplication. Thank you for your understanding. Now click OK, or the X in red, to acknowledge your lack of originality."; 
function rtclickcheck(keyp){ if (navigator.appName == "Netscape" && keyp.which == 3){ alert(message); return false; } 
if (navigator.appVersion.indexOf("MSIE") != -1 && event.button == 2) { alert(message); return false; } } 
document.onmousedown = rtclickcheck;