		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;
      }
    }
  }

var layerpos

function LayerSpecs(Left, Top) { if(No3) {
		
        this.left  = 190+myWidth*Left;
        this.top   = Top;
        this.info  = "";
        T=0;
        for(i=2; i<arguments.length; i++) {
                if(Browser=="IE") { this.info += "<TR><TD><div id='linknr"+layerpos+i+"' style='padding-left:2px;padding-right:2px;padding-top:1px;padding-bottom:1px;'>"+arguments[i]+"</div></TD></TR>"; }
                if(Browser =="NS6") { this.info += "<TR><TD><div id='linknr"+layerpos+i+"' style='padding-left:2px;padding-right:2px;padding-top:1px;padding-bottom:1px;'>"+arguments[i]+"</div></TD></TR>"; }
                if(Browser == "NS4") { this.info += "<LAYER onMouseOver='this.bgColor=\"#ffffff\"' onMouseOut='this.bgColor=\"#003388\"' POSITION=RELATIVE TOP="+T+">&nbsp;"+arguments[i]+"</LAYER>"; }
T+=20;
}
} }