//browser detection and linking to appropriate stylesheet based on browser version.  Netscape 4 gets netscape specific CSS, all others (including netscape 6) gets compliant CSS
var bNameLong = navigator.appName;
var bVer = parseInt(navigator.appVersion);
var bName = bNameLong.substr(0,4);

if ((bVer == 4) && (bName == "Nets")) {
	document.write("<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/inc\/css\/netscape.css\" title=\"Footer\">");
} else {
	document.write("<link rel=\"stylesheet\" type=\"text\/css\" href=\"\/inc\/css\/ie.css\" title=\"Footer\">");
}

function launchInfo (url, width, height) {
	var _hgInfoWin = window.open(url,"_hgInfoWin","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,width="+width+",height="+height);
}