function clearBox()
{
	var txtSearch = document.getElementById("txtSearch");	
	if (txtSearch.value =="Search" || txtSearch.value =="Enter keyword(s)" )	
		txtSearch.value="";
	return false;
}

