function right(e)
{
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button == 2 || event.button == 3)) {
alert("Access denied.");
return false;
}
return true;
}
document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
/* Get this script and more at JavaScript City: http://www.javascriptcity.com */
function e_friend() {
var e_add= prompt('Enter your friend\'s email address:',' ');
var subj= prompt('Enter the subject of your message:','Check Out Hillside Liquor Store www.hillsideliquorstore.com');
if ((subj==" ") || (subj==null)) subj="Visit www.hillsideliquorstore.com for a wide variety of beer, wine, and spirits at government liquor store prices!";
window.location="mailto:"+e_add+"?subject="+subj;
}