function Validate(form)
{

v1=form.query
		if(isblank(v1)==false) 
	{
		alert("Please Describe Your Requirements Field Can not be Blank");
		v1.focus(); 
	return false
	}
	
	
	
	v1=form.name
		if(isblank(v1)==false) 
	{
		alert("Your Name Field Can not be Blank");
		v1.focus(); 
	return false
	}
	
	v1=form.Email
	if(isblank(v1)==false) 
	{
	alert("Your Email Field Can not be Blank");
	v1.focus(); 
	return false;
	}

	if(isEmail(v1)==false) 
	{
	alert("The email \""+ v1.value+" \"is not valid email");
	v1.focus(); 
	return false;
	}
	
	v1=form.phone
	if(isblank(v1)==false) 
	{
	alert("Phone(Include Country/Area Code) Field Can not be Blank");
	v1.focus(); 
	return false
	}
	if(isNaN(form.phone.value)==true){ alert("Please enter numerics value!");return false;	}
	
	

		v1=form.fax
	if(isblank(v1)==false) 
	{
	alert("Fax(Include Country/Area Code) Field Can not be Blank");
	v1.focus(); 
	return false
	}
	if(isNaN(form.phone.value)==true){ alert("Please enter numerics value!");return false;	}

	

	v1=form.address
	if(isblank(v1)==false) 
	{
	alert("Street Address Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	v1=form.city
	if(isblank(v1)==false) 
	{
	alert("City/State Field Can not be Blank");
	v1.focus(); 
	return false
	}
	
	
	v1=form.pin
	if(isblank(v1)==false) 
	{
	alert("Zip/Postal Code Field Can not be Blank");
	v1.focus(); 
	return false
	}

	v1=form.country
	if(isblank(v1)==false) 
	{
	alert("Country Field Can not be Blank");
	v1.focus(); 
	return false
	}

	
	

	return true;
}

function isblank(s3) 
{
	if (s3.value == "") 
	{
	return false
	}
else 
	{
	return true
   }
}

function isEmail(s2) 
{
	if ((s2.value == "" || s2.value.indexOf('@', 0) == -1) || s2.value.indexOf('.')<5) {
	return false
}
else {
	return true
   }

}


