// JavaScript Document
<!-- Search function starts here -->
function header_search_val(search_val)
{
	if (frm.search.value== "")
	{
		if (confirm("Please enter search term!"))
			frm.search.focus();
			frm.search.select();
			return false
	} 
	window.location= "search.html"
}
<!-- Search function ends here -->


<!-- Search text box clear function starts here -->
function txtbox_clr()
{
document.frm.search.value="";
}
<!-- Search text box clear function ends here -->


<!-- Search text box search function starts here -->
function txtbox_cont()
{
	document.frm.search.value="Search";
}
<!-- Search text box search function ends here -->