var MenuTotal;
function SetMenuTotal(Num)
{
	MenuTotal = Num;
}

function ShowClildList(ParentID)
{
	for ( i = 1 ; i <= MenuTotal ; i ++)
	{
		Menu = "Menu" + i;
		document.getElementById(Menu).style.display="none";
	}	
	eval("document.all.Menu"+ ParentID + ".style.display = \"block\";");
}

function ShowEndClildList(MenuName,SelectID,RecordCount)
{
	for ( i = 1 ; i <= RecordCount ; i ++)
	{
		Menu = MenuName + i;
		document.getElementById(Menu).style.display="none";
	}
	eval("document.all."+MenuName+ SelectID + ".style.display = \"block\";");
}


function OpenSearchFrm(Value)
{
	location.href = "/Search.asp?SearchKey=" + Value
}

function KeyPassClick(txt)
{
	if(event.keyCode==13)
	{
		location.href = "/Search.asp?SearchKey=" + txt.value
	}
}