<!--
var PulseLoaded = 0;
var g_oL1 = 0
var g_oL2 = 0

// convert all characters to lowercase to simplify testing
var agt=navigator.userAgent.toLowerCase();

//redirect to simple menu if browser version below Netscape 6 or IE 5.5
var isNetscape  = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
                && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
                && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
var is_nav6up = (isNetscape && (parseInt(navigator.appVersion) >= 5));
var is_ie = (agt.indexOf('msie')!=-1);

var is_major = parseInt(navigator.appVersion);
var is_ie3    = (is_ie && (is_major < 4));
var is_ie4    = (is_ie && (is_major == 4) && (agt.indexOf("msie 4")!=-1) );
var is_ie5    = (is_ie && (is_major == 4) && (agt.indexOf("msie 5.0")!=-1) );
var is_ie5up  = (is_ie && !is_ie3 && !is_ie4);
var is_ie5_5up =(is_ie && !is_ie3 && !is_ie4 && !is_ie5);

//alert("isIE "+is_ie+" is_ie4 "+is_ie4+" is_ie5 "+is_ie5+" is_ie5up "+is_ie5up+" is_ie5_5up "+is_ie5_5up);

if ((isNetscape) && (!is_nav6up)) {
	alert("Your are using an older version of Netscape. This site is designed to run on Netscape 6.0 and up.  Running an older version you may not be able to take full advantage of all of the sites features.  We suggest that you visit the Netscape home page and upgrade to the latest version.");
}

if ((is_ie) && (!is_ie5_5up)) {
	alert("Your are using an older version of Internet Explorer.  This site is designed to run on IE 5.5 and up.  Running an older version you may not be able to take full advantage of all of the sites features.  We suggest that you visit the Microsoft home page and upgrade to the latest version.");
}


//begin IE 4+ And NS6 dHTML Outlines
function hideshow(which, level)
{
	if (which=="")
		return;

	if (document.getElementById)
	{
		oWhich = eval ("document.getElementById('" + which + "')")
	}
	else
	{
		oWhich = eval ("document.all." + which)
	}

	if (!isNetscape)
	{
		if (level == 1)
		{
			if (g_oL1!= 0 && g_oL1 != oWhich)
			{
				if (!g_oL1.contains(oWhich))
				{
					g_oL1.style.display="none"
					// hide sublevel 2 menu so that the parent is reset
				if (g_oL2 != 0)
					g_oL2.style.display="none"
				}
				else
					g_oL2 = oWhich
			}

			g_oL1 = oWhich
		}
		else
		{
			if (g_oL2!= 0 && g_oL2 != oWhich)
				g_oL2.style.display="none"
			g_oL2 = oWhich
		}
	}

	window.focus()

	if (oWhich.style.display=="none")
	{
		oWhich.style.display=""
	}
	else
	{
		oWhich.style.display="none"
	}

	if (isNetscape == true) {
		if (level == 1)	{
			//dumb workaround for NS
			if (oWhich.id != 'ROW1') {
				document.getElementById('ROW1').style.display="none";
			}
			if (oWhich.id != 'ROW2') {
				document.getElementById('ROW2').style.display="none";
			}
			if (oWhich.id != 'ROW3') {
				document.getElementById('ROW3').style.display="none";
			}
			if (oWhich.id != 'ROW4') {
				document.getElementById('ROW4').style.display="none";
			}

		}
	}
}
//end IE 4+ And NS6 dHTML Outlines

function BtnOnMouseOut(obj,oID)
{
if(document.getElementById(oID).style.display == "none")
	obj.style.backgroundImage="none"
}


//-->