function jumpTo(optionObj) {
	window.location.href = optionObj.options[optionObj.selectedIndex].value;
}

function getObj(name)
 { 
  if (document.getElementById)
     {
      this.obj = document.getElementById(name);
      this.style = document.getElementById(name).style;
     }
  else if (document.all)
        {                        
         this.obj = document.all[name];
         this.style = document.all[name].style;
        }
  else if (document.layers)
        {
         this.obj = document.layers[name];
         this.style = document.layers[name];
        }
}




function move123() {
var imyobj;
var tid;
var xa = 20;
var ya = 40; 
var xxx = 0; var yyy = 0;

// screen size
  var myWidth = 0, myHeight = 0;
  if( typeof( window.innerWidth ) == 'number' ) {
    //Non-IE
    myWidth = window.innerWidth;
    myHeight = window.innerHeight;
  } else if( document.documentElement && ( document.documentElement.clientWidth || document.documentElement.clientHeight ) ) {
    //IE 6+ in 'standards compliant mode'
    myWidth = document.documentElement.clientWidth;
    myHeight = document.documentElement.clientHeight;
  } else if( document.body && ( document.body.clientWidth || document.body.clientHeight ) ) {
    //IE 4 compatible
    myWidth = document.body.clientWidth;
    myHeight = document.body.clientHeight;
  }
pageWidth = myWidth;
pageHeight = myHeight;

//end screen size

imyobj = new getObj("myobj");
imyobj2 = new getObj("myobj2");
imyobj3 = new getObj("myobj3");
imyobj4 = new getObj("myobj4");
imyobj5 = new getObj("myobj5");
imyobj6 = new getObj("myobj6");

var w = 250;
var h = 250;

xxx = Math.floor(Math.random()* (pageWidth - w));
yyy = Math.floor(Math.random()* (pageHeight - h));

yyy = yyy + 200;

  imyobj.style.top = yyy + "px";
  imyobj.style.left = xxx + "px";
  
xxx2 = Math.floor(Math.random()* (pageWidth - w));
yyy2 = Math.floor(Math.random()* (pageHeight - h));
yyy2 = yyy2 + 150;
  imyobj2.style.top = yyy2 + "px";
imyobj2.style.left = xxx2 + "px";
  
  xxx3 = Math.floor(Math.random()* (pageWidth - w));
yyy3 = Math.floor(Math.random()* (pageHeight - h));
yyy3 = yyy3 + 150;
  imyobj3.style.top = yyy3 + "px";
  imyobj3.style.left = xxx3 + "px";
  
    xxx4 = Math.floor(Math.random()* (pageWidth - w));
yyy4 = Math.floor(Math.random()* (pageHeight - h));
yyy4 = yyy4 + 150;
  imyobj4.style.top = yyy4 + "px";
  imyobj4.style.left = xxx4 + "px";

  xxx5 = Math.floor(Math.random()* (pageWidth - w));
yyy5 = Math.floor(Math.random()* (pageHeight - h));
yyy5 = yyy5 + 150;
  imyobj5.style.top = yyy5 + "px";
  imyobj5.style.left = xxx5 + "px";
  
  xxx6 = Math.floor(Math.random()* (pageWidth - w));
yyy6 = Math.floor(Math.random()* (pageHeight - h));
yyy6 = yyy6 + 150;
  imyobj6.style.top = yyy6 + "px";
  imyobj6.style.left = xxx6 + "px";
  
   }
   
  <!--

  if (document.images)
   {
     pic1on= new Image(700,5);
     pic1on.src="./img/line.gif";  

     pic1off= new Image(700,5);
     pic1off.src="./img/blank.gif";

	 thingon= new Image(72,80);
     thingon.src="./img/thing-a.gif";
	 
	 thingoff= new Image(72,80);
     thingoff.src="./img/thing.gif";
	 
	 thing2on= new Image(19,10);
     thing2on.src="./img/thing4-a.gif";
	 
	 thing2off= new Image(10,10);
     thing2off.src="./img/thing4.gif";
	 
	 thing4on= new Image(19,10);
     thing4on.src="./img/thing4-a.gif";
	 
	 thing4off= new Image(10,10);
     thing4off.src="./img/thing4.gif";
   }

function lightup(imgName)
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }

//-->

