<!--
if (document.images) {

  var homoff = new Image()
  homoff.src = "images/hombtn.gif"
  var homon = new Image()
  homon.src = "images/hombtn2.gif"
  var brdoff = new Image()
  brdoff.src = "images/brdbtn.gif"
  var brdon = new Image()
  brdon.src = "images/brdbtn2.gif"
  var accoff = new Image()
  accoff.src = "images/accbtn.gif"
  var accon = new Image()
  accon.src = "images/accbtn2.gif"
  var cthoff = new Image()
  cthoff.src = "images/cthbtn.gif"
  var cthon = new Image()
  cthon.src = "images/cthbtn2.gif"
  var conoff = new Image()
  conoff.src = "images/conbtn.gif"
  var conon = new Image()
  conon.src = "images/conbtn2.gif"
  var repoff = new Image()
  repoff.src = "images/repbtn.gif"
  var repon = new Image()
  repon.src = "images/repbtn2.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","mast5.jpg","mast6.jpg","mast7.jpg","mast8.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');");
}
//-->



