<!--

var loc;
var n = 0;
var ie =0;
var browser=0;

function Menu(obj){
  this.css=(n) ? eval('document.'+obj):eval('document.all.'+obj+'.style')         
  this.ref=(n) ? eval('document.'+obj+'.document'):eval('document');    
  this.height=n?this.ref.height:eval(obj+'.offsetHeight')
  this.x=(n)? this.css.left:this.css.pixelLeft;
  this.y=(n)? this.css.top:this.css.pixelTop;             
  this.hideIt=hideIt; this.showIt=showIt; this.moveIt=moveIt                      
  return this
}
function showIt(){this.css.visibility="visible"}
function hideIt(){this.css.visibility="hidden"}
function moveIt(x,y){this.x=x; this.y=y; this.css.left=this.x; this.css.top=this.y}
function init(){
  Lay=new Array();
  Lay[0]=new Menu('divLay0');
  Lay[1]=new Menu('divLay1');
  Lay[2]=new Menu('divLay2');
  Lay[3]=new Menu('divLay3');
  Lay[4]=new Menu('divLay4');
  return true;
}

function menu(num)
{if(browser)
  {Lay[num].showIt();}
}

function closeIt()
{if(browser)
  {for(i=0;i<Lay.length;i++)
      {Lay[i].hideIt();}
  }
}

function initall() {
n = (document.layers) ? 1:0;
ie = (document.all) ? 1:0;
browser=((n || ie) && parseInt(navigator.appVersion)>=4)
if (browser) init();
}

-->
