<!-- Begin
var num=0;
function right(e) {
num=++num
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)) {
if (num==1)alert("Sorry, you do not have Mikes permission to right click :O)");
else alert("Hey Man, Give me a break!!!!\n This is "+num+" times you have tried that. \n CAN'T YOU READ! NO RIGHT CLICK");
if (num>=4)history.go(-1);
if (num>=4) num=0; 
return false;
}
return true;
}

document.onmousedown=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
window.onmousedown=right;
//  End -->