 if (document.layers) { //checks for Netscape 4
     gordObj = eval('document.' + gordito);
  }
  else if (document.all && !document.getElementById) { //checks for IE 4
     gordObj = eval('document.all.' + gordito);
  }
  else if (document.getElementById) { //Checks for Netscape 6 & IE 5
     gordObj = document.getElementById('gordito');
  }
gordObj.scrollamount=10;

  function gordito_up()
  {
   gordObj.direction="up";
  }
  function gordito_down()
  {
   gordObj.direction="down";
  }
 function gordito_right()
  {
   gordObj.direction="right";
  }
  function gordito_left()
  {
   gordObj.direction="left";
  }
  function gordito_start()
  {
   gordObj.start();
  }
  function gordito_stop()
  {
   gordObj.stop();
  }
  function set_speed(x)
  {
   gordObj.scrollAmount=x;
  }
