// Drop down menu

function CloseAllMenues()
{
	
}

function ShowMenu(thisTD,MenuID,Level)
{
	var DivID = document.getElementById("M_"+MenuID);
	if (DivID) {
		DivID.aa = "1";
		if (Level=="0") {
			DivID.style.top = thisTD.offsetTop+69;
			DivID.style.left = thisTD.offsetLeft+226;
		} else {
			DivID.style.top = thisTD.offsetTop+6;
			DivID.style.left = thisTD.offsetLeft+100;
		}
		if (DivID.style.display!="") {
			DivID.style.display="";
		
		}
	}
}

function CloseMenu(thisTD,MenuID,Level)
{
	var DivTagName = "M_"+MenuID;
	var DivID = document.getElementById(DivTagName);
	var TableID = document.getElementById("T_"+MenuID);
	if (DivID) {
		DivID.aa = "0";
		setTimeout("DoHideMenu('"+DivTagName+"')",200);
	}
}

function DoHideMenu(TagID)
{
	var DivID = document.getElementById(TagID);
	if ((DivID) && (DivID.aa=="0")) {
		DivID.style.display="none";
	}
}

function SetLocation()
{
	var oSelect = document.getElementById("oc");
	var oValue = oSelect.options[oSelect.selectedIndex].value;
	if (oValue!="") {
		document.location.href = oSelect.options[oSelect.selectedIndex].value;
	}
}
