							function validateForm() 
							{
							 var okSoFar=true
							 with (document.register_form)
							 {
							  if (name.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Name.")
								name.focus()
							  }
							  if (phone.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Phone Number.")
								phone.focus()
							  }
							  if (address.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Address.")
								address.focus()
							  }
							  if (town.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Town/City.")
								town.focus()
							  }
							  if (postcode.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please enter your Post code.")
								postcode.focus()
							  }
							  var foundAt = email.value.indexOf("@",0)
							  if (foundAt < 1 && okSoFar)
							  {
								okSoFar = false
								alert ("Please enter a valid email address.")
								email.focus()
							  }
							  if (portfolio.value=="" && okSoFar)
							  {
								okSoFar=false
								alert("Please select Experience Level.")
								portfolio.focus()
							  }
							  if (okSoFar==true)  submit();
							 }
							}
