function openWin(url, w, h)
{ 	
	browserVer = parseInt(navigator.appVersion);
	
	if (browserVer>= 3) 
	{
		newWin = window.open(url,'newWin'+ w + h,'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h);
		if (window.focus && (navigator.appVersion.indexOf("MSIE 4") < 0 ))
			setTimeout('newWin.focus()',10);
		return(false);					
	}		
	else
	{
		return(true);
	}  
}

// Platform/Browser detect for CSS Include

	var browser = navigator.appName;
	var ie = "Microsoft Internet Explorer";
	var netscape = "Netscape";
	var os = navigator.platform;
	var mac = 'MacPPC';
	var pccsspath = 
	"hsi.css"
;
	var maccsspath = 
	"hsi2.css"
;
	
	if (browser == netscape && os != mac) {
	    document.write('<link rel="stylesheet" type="text/css" title="css" href='+ pccsspath +'>');
	    }
	else if (browser == ie && os != mac) {
	    document.write('<link rel="stylesheet" type="text/css" title="css" href='+ pccsspath +'>');
	    }
	else if (browser == netscape && os == mac) {
	    document.write('<link rel="stylesheet" type="text/css" title="css" href='+ maccsspath +'>');
	    }
	else if (browser == ie && os == mac) {
	    document.write('<link rel="stylesheet" type="text/css" title="css" href='+ maccsspath +'>');
	    }
	
	
	// Dropdown Menu With Go Button navigating to page within site
	function navigate() {
	  var menuIndex = document.formExplore.selectMenu.selectedIndex; 
	  document.location = document.formExplore.selectMenu.options[menuIndex].value;
	}
	
	var homePage = 'yes';
