		function CheckForm() 
		{

			if 	((document.entry.nameLast.value == "") ||
				(document.entry.nameFirst.value == "") ||
				(document.entry.email.value == "") ||
				(document.entry.phone.value == "") ||
				(document.entry.gender.value == 0) ||
				(document.entry.additionalRequest.value == ""))
			{

				if (document.entry.additionalRequest.value == "")
				{
					FocusAndColor(document.entry.additionalRequest);
				}
				if (document.entry.phone.value == "")
				{
					FocusAndColor(document.entry.phone);
				}
				if (document.entry.email.value == "")
				{
					FocusAndColor(document.entry.email);
				}
				if (document.entry.nameFirst.value == "")
				{
					FocusAndColor(document.entry.nameFirst);
				}
				if (document.entry.nameLast.value == "")
				{
					FocusAndColor(document.entry.nameLast);
				}
				if (document.entry.gender.value == 0)
				{
					FocusAndColor(document.entry.gender);
				}
			}
			else 
			{
				mail = document.entry.email.value;
				var place = mail.indexOf("@",1);
				var point = mail.indexOf(".",place+1);
		
				if ((place > -1)&&(mail.length >2)&&(point > 1))
				{
					document.entry.submit();
					return(true);
				}
				else
				{
					FocusAndColor(document.entry.email)
					return(false);
				}
			}
		}