<!--function reDo() { 	window.location.reload(); } function hideAll() {}//window.onresize = reDo; //Define global variables  var what = null; var newbrowser = true; var check = false;function init() {  if (document.layers) {  layerRef="document.layers";  styleSwitch="";  visibleVar="show";  what ="ns4";  }  else if(document.all) {  layerRef="document.all";  styleSwitch=".style";  visibleVar="visible";  what ="ie4";  }  else if(document.getElementById) {  layerRef="document.getElementByID";  styleSwitch=".style";  visibleVar="visible";  what="dom1";  }  else {  what="none";  newbrowser = false;  } check = true;hideAll(); }// Toggles the layer visibility onfunction showHide() { //v3.0  var i,p,v,obj,args=showHide.arguments;  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v='hide')?'hidden':v; }    obj.visibility=v; }}function tmt_findObj(n){	var x,t; if((n.indexOf("?"))>0&&parent.frames.length){t=n.split("?");	x=eval("parent.frames['"+t[1]+"'].document.getElementById('"+t[0]+"')");	}else{x=document.getElementById(n)}return x;}function MM_findObj(n, d) { //v4.0  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);  if(!x && document.getElementById) x=document.getElementById(n); return x;}   //FUNCTION TO FIX NETSCAPE RESIZE BUGfunction WM_netscapeCssFix() {  // It gets around another unfortunate bug whereby Netscape   // fires a resize event when the scrollbars pop up. This   // checks to make sure that the window's available size   // has actually changed.  if (document.WM.WM_netscapeCssFix.initWindowWidth != window.innerWidth || document.WM.WM_netscapeCssFix.initWindowHeight != window.innerHeight) {    document.location = document.location;  }}function WM_netscapeCssFixCheckIn() {  // This function checks to make sure the version of Netscape   // in use contains the bug; if so, it records the window's   // width and height and sets all resize events to be handled   // by the WM_netscapeCssFix() function.  if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {    if (typeof document.WM == 'undefined'){      document.WM = new Object;    }    if (typeof document.WM.WM_scaleFont == 'undefined') {      document.WM.WM_netscapeCssFix = new Object;      document.WM.WM_netscapeCssFix.initWindowWidth = window.innerWidth;      document.WM.WM_netscapeCssFix.initWindowHeight = window.innerHeight;    }    window.onresize = WM_netscapeCssFix;  }}WM_netscapeCssFixCheckIn();//-->