// JavaScript Document
function validate_search_value(thisform)
 {
	 //alert("form");
	with (thisform)
  {
	
	if(validate_zip(search_cate,"Please enter a Keyword or select a Category to search")==false)
    {//alert("ok3");
	search_cate.focus();return false;}
	

  }
 
 }
 
function validate_zip(field,alerttxt)
{
with (field)
  {
  if (value==null||value=="eg: Builders, Carpenters")
    {alert(alerttxt);return false;}
  else
    {return true;}
  }
}
