<!--

function mo(o){o.className=='stateoff'?o.className='stateon': o.className=o.className; }

function mx(o){o.className=='stateon'?o.className='stateoff': o.className=o.className; }

function mc(o){o.className='stateclicked'; }

function openURL(){ 
selInd = document.theForm.quicklink.selectedIndex; 
goURL = document.theForm.quicklink.options[selInd].value;
window.location.href = goURL; 
}

function ShowHide(id1, id2, id3)
{
	var res = expMenu(id1);
	if (id2 != '') expMenu(id2);
	
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function expMenu(id)
{
	var itm = null;
	if (document.getElementById)
	{
		itm = document.getElementById(id);
	}
	else if (document.all)
	{
		itm = document.all[id];
	}
	else if (document.layers)
	{
		itm = document.layers[id];
	}
	if (!itm)
	{
		// do nothing
	}
	else if (itm.style)
	{
		if (itm.style.display == "none")
		{
			itm.style.display = "";
			return 1;
		}
		else
		{
			itm.style.display = "none";
			return 2;
		}
	}
	else
	{
		itm.visibility = "show";
		return 1;
	}
}


//-->
