//////////
//For Mouseovers///////



  if (document.images)   //checks the object images which designates a compatible browser
   {

	intro = '<p align="center">You Are Currently In Sector:<br>';

	btnsrc = "imgbtn/";


	sector = "main";
	button = 'pic1';		//set all the below to the same.
	homeurl = 'index.htm';



	pic1on = new Image;		//set these to the right pic
	pic1on.src =btnsrc + sector + "33.gif";

	pic1off= new Image;
	pic1off.src=btnsrc + sector + "22.gif";

   }

function lightup(imgName)                //switch pic to bright
 {
   if (document.images)
    {
      imgOn=eval(imgName + "on.src");
      document[imgName].src= imgOn;
    }
 }

function turnoff(imgName)               //switch back
 {
   if (document.images)
    {
      imgOff=eval(imgName + "off.src");
      document[imgName].src= imgOff;
    }
 }
//////////////