<!-- Hide from browsers that don't understand javascript
//********************************************************************************
//		NOTE:  Include this file just before the HTML </head> tag as follows:
//		<SCRIPT language=JavaScript src="jsCheckBrowser.js"></SCRIPT>
//********************************************************************************
function CheckBrowser(xPage)
{
//alert("CheckBrowser entered")
	var sBrowser = navigator.appName;
	switch (sBrowser)
	{
	case "Netscape":
		var Height1 = "65px";
		var Height2 = "282px";
			if(xPage == "index") /* Note: the index page has two lines of heading and needs special treatment. */
			{
				Height1 = "95px";
				Height2 = "252px";
			}
		break;			
	case "Opera":
		var Height1 = "55px";
		var Height2 = "283px";
			if(xPage == "index") /* Note: the index page has two lines of heading and needs special treatment. */
			{				
				Height1 = "85px";
				Height2 = "253px";
			}
		/* Note: the following adjustment is needed so that the image lines up properly with the navigation. */
		var xdivNavImage = document.getElementById("divNavImage")
		xdivNavImage.style.width = "120px"			
		break;
	default:
		break;
	}
							
	var xDiv1 = document.getElementById("divHead1");
	xDiv1.style.height = Height1;
	var xDiv2 = document.getElementById("divHead2");
	xDiv2.style.height = Height2;
	xDiv2.style.marginBottom = "20px";
	return;						
//alert("CheckBrowser exited")
} //End function for checking the Browser 
//********************************************************************************
//end hiding -->