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

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;
}

