<!--
var d = document;

// browser detect because Netscape doesn't play nice
// Netscape 4 gets it's own entire fixed position stylesheet
// other Netscapes get the standard stylesheet plus some redefined HR values (styles-net.css)

var is_nav4 = ((navigator.appName=="Netscape")&&(parseInt(navigator.appVersion)==4));
var is_ns = (navigator.appName=="Netscape");
if (is_nav4)
	document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles-net4.css\">")
else {
	document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles.css\">");
	if (is_ns)
		document.write("<link rel=\"stylesheet\" type=\"text/css\" href=\"../styles-net.css\">");
}

function reloadPage(init) {  //Reloads the window if Netscape 4.x resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.pgW=innerWidth; document.pgH=innerHeight; onresize=reloadPage; }}
  else if (innerWidth!=document.pgW || innerHeight!=document.pgH) location.reload();
}
reloadPage(true);

function holdW(where){
  var mW = "";
  if((!d.getElementById) || (d.getElementById('top').style.minWidth == undefined)) { 
    var mW = ("<hr size=\"0\" color=\"white\" class=\"" + where + "\">");
  }// }
  return mW  
} 

function goTo (page) {
   
	if (page != "" ) {		document.location.href = page;	}
	return false;
}

//-->