<!--//--><![CDATA[//><!--
function displayInfo(tShow, type) {
	var y = document.getElementsByTagName(type);
	
	for(var i = 0; i < y.length; i++)
	{
		if(y[i].className == tShow)
		{
			if(y[i].style.display == 'block'){
				y[i].style.display = 'none';
			}
			else {
				y[i].style.display = 'block';
			}
		}
	}
}

sfHover = function() {
	var sfEls = document.getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


/*  Control the input.button/submit CSS style   */

function goLite(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#97a3c4";
}

function goDim(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#595959";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "";
}


function goLite2(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#FFFFFF";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#000099";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#9999DD";
}

function goDim2(FRM,BTN)
{
   window.document.forms[FRM].elements[BTN].style.color = "#777777";
   window.document.forms[FRM].elements[BTN].style.backgroundColor = "#fffefb";
   window.document.forms[FRM].elements[BTN].style.borderColor = "#BBBBBB";
}

	
//--><!]]>
