<!--
if (document.images) {

  var homoff = new Image()
  homoff.src = "images/hombtn.gif"
  var homon = new Image()
  homon.src = "images/hombtn2.gif"
  var rntoff = new Image()
  rntoff.src = "images/rntbtn.gif"
  var rnton = new Image()
  rnton.src = "images/rntbtn2.gif"
  var saloff = new Image()
  saloff.src = "images/salbtn.gif"
  var salon = new Image()
  salon.src = "images/salbtn2.gif"
  var modoff = new Image()
  modoff.src = "images/modbtn.gif"
  var modon = new Image()
  modon.src = "images/modbtn2.gif"
  var conoff = new Image()
  conoff.src = "images/conbtn.gif"
  var conon = new Image()
  conon.src = "images/conbtn2.gif"
  var reloff = new Image()
  reloff.src = "images/relbtn.gif"
  var relon = new Image()
  relon.src = "images/relbtn2.gif"
}

var isMenuAct = false;

function actMenuItem(imgName) {
  isMenuAct = true
  if (document.images) 
    document[imgName].src = eval(imgName + 'on.src')
}

function ImgActMenuItem(imgName) {
  if (document.images) 
    document["text"].src = eval(imgName + '.src')
}

function inactMenuItem(imgName) {
  isMenuAct = false
  if (document.images) {
    document[imgName].src = eval(imgName + 'off.src')  
  }
}


var item=new Array("mast1.jpg","mast2.jpg","mast3.jpg","mast4.jpg");

   function randselect() {
	do {							
	i=Math.floor(Math.random()*item.length); 	
        } while(typeof(item[i])=="undefined");

   return item[i];
   }

function PopUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=700,height=500,left=340,top=150');");
}
//-->



