// JavaScript Document
function validate_requirements(form)
{ 
	if ((form.f_date.value==null) || (form.f_date.value=="") || (form.f_date.value=="Date:"))
	{
		alert("Please fill in Date")
		form.f_date.focus()
		return false
	}	
	else if ((form.f_client.value==null) || (form.f_client.value=="") || (form.f_client.value=="Client:"))
	{
		alert("Please fill in Client")
		form.f_client.focus()
		return false
	}
	else if ((form.f_location.value==null) || (form.f_location.value=="") || (form.f_location.value=="Location:"))
	{
		alert("Please fill in Location")
		form.f_location.focus()
		return false
	}
	else if ((form.f_property_type.value==null) || (form.f_property_type.value=="") || (form.f_property_type.value=="Property Type:"))
	{
		alert("Please fill in Property Type")
		form.f_property_type.focus()
		return false
	}
	else if ((form.f_size.value==null) || (form.f_size.value=="") || (form.f_size.value=="Size:"))
	{
		alert("Please fill in Size")
		form.f_size.focus()
		return false
	}
	else if ((form.f_tenure.value==null) || (form.f_tenure.value=="") || (form.f_tenure.value=="Tenure:"))
	{
		alert("Please fill in Tenure")
		form.f_tenure.focus()
		return false
	}
	else if ((form.f_timescale.value==null) || (form.f_timescale.value=="") || (form.f_timescale.value=="Timescale:"))
	{
		alert("Please fill in Timescale")
		form.f_timescale.focus()
		return false
	}
	else if ((form.f_other_info.value==null) || (form.f_other_info.value=="") || (form.f_other_info.value=="Any other information:"))
	{
		alert("Please fill in Any other information:")
		form.f_other_info.focus()
		return false
	}
	
//	else if ((form.f_email.value==null) || (form.f_email.value=="") || (form.f_email.value=="Your Email:"))
//	{
//		alert("Please fill in Your Email")
//		form.f_email.focus()
//		return false
//	}
//	else if (echeck(form.f_email.value)==false)
//	{
//		form.f_email.value=""
//		form.f_email.focus()
//		return false
//	}

}//validate_requirements

