var PrevButton=0;
function RaiseButton()
{
	window.event.cancelBubble=true;
	currentButton = window.event.srcElement;
	if(PrevButton && PrevButton != currentButton)
	{
		HideButton();
	}
	if(currentButton.buttonType)
	{
		currentButton.className = currentButton.buttonType + "On";
		PrevButton=currentButton;
	}
	else 
	{
		PrevButton = 0;
	}
}


function PressButton()
{
	window.event.cancelBubble=true;
	currentButton = window.event.srcElement;
	if(currentButton.buttonType)
	{
		currentButton.className = currentButton.buttonType + "Press";
	}
}


function HideButton()
{
	PrevButton.className = PrevButton.buttonType + "Off";
}
	


function surfto(form) 
{
	var myindex=form.dest.selectedIndex
  	if (form.dest.options[myindex].value != "") 
	{
		window.location.href=form.dest.options[myindex].value;
 	}
}

function hiLite (imgName, imgObjName) {
if (document.images)   {
	document.images[imgName].src = eval(imgObjName + ".src");
}}


function showHidden(divName)
{
	if (document.all(divName).style.display == "none") 
	{
		document.all(divName).style.display = ""
	}
	else
	{
		document.all(divName).style.display="none"
	}
}


