// JavaScript Document
function check_search(th)
{
	if(th.state.value <= 0)
	{
		alert("Please Select State!");
		th.state.focus();
		return false ;
	}
	if(th.ModelType.value <= 0)
	{
		alert("Please Select Gender!");
		th.ModelType.focus();
		return false ;
	}
	if(th.keyword.value <= 0)
	{
		alert("Please enter Model Keyword !");
		th.keyword.focus();
		return false ;
	}	
	return true;
}