<!--

	function openWin(url, width, height, left, top)
	{
		var site = window.open(url, "openWin", 'width=' + width + ',height=' + height + ',left=' + left + ',top=' + top + ',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no')
		site.focus;
	}

//var strURL = "http://bhn.dareneggert.com"
var strURL = "http://www.bhncorp.com"

browserName = navigator.appName;
browserVer = parseInt(navigator.appVersion);
        if (browserName == "Netscape" && browserVer >= 3 || browserName == "Microsoft Internet Explorer" && browserVer>=4) version = "n3";
        else version = "x";
        if (version == "n3")
		{
		abouton = new Image();
		abouton.src = strURL + "/images/Home/AboutOn.gif";
		aboutoff = new Image();
		aboutoff.src = strURL + "/images/Home/AboutOff.gif";
		portfolioon = new Image();
		portfolioon.src = strURL + "/images/Home/PortfolioOn.gif";
		portfoliooff = new Image();
		portfoliooff.src = strURL + "/images/Home/PortfolioOff.gif";
		contacton = new Image();
		contacton.src = strURL + "/images/Home/ContactOn.gif";
		contactoff = new Image();
		contactoff.src = strURL + "/images/Home/ContactOff.gif";
		safetyon = new Image();
		safetyon.src = strURL + "/images/Home/SafetyOn.gif";
		safetyoff = new Image();
		safetyoff.src = strURL + "/images/Home/SafetyOff.gif";
		jobson = new Image();
		jobson.src = strURL + "/images/Home/JobsOn.gif";
		jobsoff = new Image();
		jobsoff.src = strURL + "/images/Home/JobsOff.gif";

		}
function img_act(imgName)
{
		if (version == "n3")
		{
		imgOn = eval(imgName + "on.src");
		document [imgName].src = imgOn;
		}
}
function img_inact(imgName)
{
		if (version == "n3")
		{
		imgOff = eval(imgName + "off.src");
		document [imgName].src = imgOff;
		}
}

// -->