// JavaScript Document
function searchbox(action, Keywords)
{
	var Keywords=document.getElementById(Keywords).value;
	if(action=='Search')
		if(Keywords=='')
			{
				alert("Please insert the keyword for search");
				document.getElementById('search').focus();
				return false;
			}
		else
			window.location= "search.php?keywords="+Keywords;
}
function showCatGALLERY(catID)
	{
		window.location= "gallary.php?catID="+catID;
	}
	function showackn(catID)
	{
		window.location= "acknowledgement.php?ackn="+catID;
	}
	function showfavGALLERY(catID)
	{
		window.location= "fav.php?catID="+catID;
	}
	function showdetail(){
		document.getElementById('shazi').style.display='';
	}
	function hidedetail(){
		document.getElementById('shazi').style.display="none";
	}
