function validateform( form )
{
if ( form.f_name.value.length < 1 || form.company.value.length < 1 || 
	form.address.value.length < 1 || form.phone.value.length < 1 || 
	form.f_email.value.length < 1 )
	{
		alert("Please fill all mandatory fields!");
		return false;
	}
	
}