
function Search_Click_fn(frmName) 
{
	if (Form_Valid_Search_Click_fn(frmName)) 
	{
		var objForm = eval("document." + frmName);
		objForm.action = "search_result.php?mode=search";
		objForm.submit();
	} 
	else return false;
}

function Form_Valid_Search_Click_fn(frmName) 
{		
	if((document.getElementById("txtcity").value ==''))
	{
		alert("Please Enter City"); return false;	
	
	}

    return true;
}

function Search_Click_fn1(frmName) 
{
	if (Form_Valid_Search_Click_fn1(frmName)) 
	{
		var objForm = eval("document." + frmName);
		objForm.action = "search_result.php?mode=search1";
		objForm.submit();
	} 
	else return false;
}

function Form_Valid_Search_Click_fn1(frmName) 
{		
	if(document.getElementById("txtzipcode").value =='')
	{
		alert("Please enter your 5 digit or 5 digit+4 zip code."); return false;	
	
	}
	if (!validateZIP (frmName, "txtzipcode"))
	{ return false; }	
	
	return true;
}

