
function shake_start()
{
  this.moveBy(0,1);
  this.moveBy(0,-1);
  this.moveBy(1,0);
  this.moveBy(-1,0);
  timer=setTimeout("shake_start()",10);
}
function shake_stop()
{
  clearTimeout(timer);
}

function Message_Box_1()
{
  var r=confirm("Do you really want to leave Gooism ?");
  if (r==true)
  {
    alert ("Im sorry, \n\n Leaving is not an Option !");
    r=false;
  }
  if (r==false) 
  {
    document.location.href="home2.html";
  }
}

function right(e) {
var msg = "(c) 2008 - Right Click Disabled";
if (navigator.appName == 'Netscape' && e.which == 3) 
{
  alert(msg);
  return false;
}
if (navigator.appName == 'Microsoft Internet Explorer' && event.button==2) 
{
  alert(msg);
  return false;
}
  else return true;
}

function copyright() 
{
  if(document.images)
  {
    for(i=0;i<document.images.length;i++)
    {
      document.images[i].onmousedown = right;
      document.images[i].onmouseup = right;
    }
  }
}
