function ash(){
document.getElementById('amenudrop').style.display="block";
}
function adsh(){
document.getElementById('amenudrop').style.display="none";
}

function ssh(){
document.getElementById('smenudrop').style.display="block";
}
function sdsh(){
document.getElementById('smenudrop').style.display="none";
}


function asubsh(arg){
document.getElementById('asubmenudrop' + arg).style.display="block";
document.getElementById('amenudrop').style.display="block";
}
function asubdsh(arg){
document.getElementById('asubmenudrop' + arg).style.display="none";
document.getElementById('amenudrop').style.display="block";
}

function sh(){
document.getElementById('menudrop').style.display="block";
}
function dsh(){
document.getElementById('menudrop').style.display="none";
}

function subsh(arg){
document.getElementById('submenudrop' + arg).style.display="block";
document.getElementById('menudrop').style.display="block";
}
function subdsh(arg){
document.getElementById('submenudrop' + arg).style.display="none";
document.getElementById('menudrop').style.display="block";
}

function fnSearch(){
	
	if(document.thisSearch.Search.value=="")
	{
		alert("Please enter a Search Keyword");
		document.thisSearch.Search.focus();
		return false;
	}
	
	document.thisSearch.action="search.php?mode=search";
	document.thisSearch.submit();
	return true;
}

