/* JAVASCRIPT source code copyright © Martin Webb (martin@irt.org) */
/* --------------- http://javascript.internet.com ---------------- */
//
function right(e)
{var msg = "Right-Clicking Disabled By Dastard";
if (navigator.appName == 'Netscape' && e.which == 3)
{vibrate(3);alert(msg);return false;}
else
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2)
{vibrate(3);alert(msg);return false;}
return true;}
document.onmousedown = right;
/* --- Browser Window Vibrator or Screen Shaker by Ayman Elbanhawy --- */
/* ---  JAVASCRIPT source code copyright © Planet-Source-Code.com  --- */
function vibrate(x)
{if (parent.moveBy)
{for (a = 10; a > 0; a--)
{for (b = x; b > 0; b--)
{parent.moveBy(0,-a);parent.moveBy(-a,0);parent.moveBy(0,a);parent.moveBy(a,0);}}}}