function Validate()
{
	var firstName = document.morfabInfo.firstName.value
	if (firstName == "")
	{
		alert("Please enter your first name")
		document.morfabInfo.firstName.value = ""
		document.morfabInfo.firstName.focus()
	}
	else
	{
		var lastName = document.morfabInfo.lastName.value
		if (lastName == "")
		{
			alert("Please enter your last name")
			document.morfabInfo.lastName.value = ""
			document.morfabInfo.lastName.focus()
		}
		else
		{
			var address = document.morfabInfo.address.value
			if (address == "")
			{
				alert("Please enter your mailing address")
				document.morfabInfo.address.value = ""
				document.morfabInfo.address.focus()
			}
			else
			{
				var city = document.morfabInfo.city.value
				if (city == "")
				{
					alert("Please enter your city")
					document.morfabInfo.city.value = ""
					document.morfabInfo.city.focus()
				}
				else
				{
					var state = document.morfabInfo.state.value
					if (state == "")
					{
						alert("Please enter your state")
						document.morfabInfo.state.value = ""
						document.morfabInfo.state.focus()
					}
					else
					{
						var zip = document.morfabInfo.zip.value
						if (zip =="")
						{
							alert("Please enter your zip code")
							document.morfabInfo.zip.value = ""
							document.morfabInfo.zip.focus()
						}
						else
						{
							var country = document.morfabInfo.country.value
							if ((country == "") || (document.morfabInfo.country.value.length < 2))
							{
								alert("Please enter your country")
								document.morfabInfo.country.value = ""
								document.morfabInfo.country.focus()
							}
							else
							{
								var email = document.morfabInfo.email.value
								var atSign = email.indexOf("@")
								if (email == "" || atSign == -1)
								{
									alert("Please enter a valid email address")
									document.morfabInfo.email.value = ""
									document.morfabInfo.email.focus()
								}
								else
								{
									var contactTime = false
									for (i = 0; i < document.morfabInfo.contactTime.length; i++)
 									{
										if (document.morfabInfo.contactTime[i].checked)
									 	contactTime = true; 
									}
									if (!contactTime)
									{
										alert("Please tell us the best time to contact you");
										return;
									}
									else
									{
										document.morfabInfo.submit();
									}
								}
							}		
						}
					}	
				}
			}	
		}	
	}
}
