function formValidation()
	{
	var msg;
	msg = ""; 
	
	
	if(document.form1.name.value == "")
		{
		msg = "Please enter your Name";
		document.form1.name.focus() 
		}
	
	if(document.form1.phone.value == "")
		{
		if (msg == "")
			{
			msg = "Please enter your Phone"; 	
			document.form1.customer_mail.focus()
			}
		else {
				 msg = msg + ", Phone"
				 }
		}
	
	if((document.form1.customer_mail.value.indexOf('@')== -1) || (document.form1.customer_mail.value.indexOf('.')== -1))
		{
		if (msg == "")
			{
			msg = "Your Email address appears to be invalid, please correct."; 	
			document.form1.customer_mail.focus()
			}
		else {
				 msg = msg + ", Email"
				 }
		}
	
	if (msg == "")
  	{
    document.form1.submit()
    }
  else {
  		 alert(msg)
       }
	}

function formValidation2()
	{
	var msg2;
	msg2 = ""; 
	
	
	if(document.form2.name.value == "")
		{
		msg2 = "Please enter your Name";
		document.form2.name.focus() 
		}
	
	if((document.form2.customer_mail.value.indexOf('@')== -1) || (document.form2.customer_mail.value.indexOf('.')== -1))
		{
		if (msg2 == "")
			{
			msg2 = "Your Email address appears to be invalid, please correct."; 	
			document.form2.customer_mail.focus()
			}
		else {
				 msg2 = msg2 + ", Email"
				 }
		}
	
	if (msg2 == "")
  	{
    document.form2.submit()
    }
  else {
  		 alert(msg2)
       }
	}
