function validate_searchby_developer(frmObj)
{
	if(!validateBlank(frmObj.developer,"Please Select Developer")) return false;
	frmObj.submit();
}

function validate_searchby_location(frmObj)
{
	if(!validateBlank(frmObj.location,"Please Enter Location")) return false;
	frmObj.submit();
}

function validate_searchby_keyword(frmObj)
{
	if(!validateBlank(frmObj.keyword,"Please Enter Keyword")) return false;
	frmObj.submit();
}