function Validator (theForm)
{
if (theForm.name.value == "")
{
alert("Please enter your name/ Bitte Ihre Name eingeben/ SVP uw naam ingeven");
theForm.name.focus();
return (false);
}
if (theForm.name.value.length < 5)
{
alert("Please enter your name/ Bitte Ihre Name eingeben/ SVP uw naam ingeven");
theForm.name.focus();
return (false);
}
if (theForm.email.value == "")
{
alert("Please enter your e-mail adress/ Bitte Ihre E-mailadresse eingeben/ SVP uw e-mailadres ingeven");
theForm.email.focus();
return (false);
}
if (theForm.email.value.length < 6)
{
alert("Please enter your e-mail adress/ Bitte Ihre E-mailadresse eingeben/ SVP uw e-mailadres ingeven");
theForm.email.focus();
return (false);
}

if (theForm.city.value == "")
{
alert("Please enter your city name/ Bitte Ihr Wohnort eingeben/ SVP plaatsnaam ingeven");
theForm.city.focus();
return (false);
}
if (theForm.city.value.length < 3)
{
alert("Please enter your city name/ Bitte Ihr Wohnort eingeben/ SVP plaatsnaam ingeven");
theForm.city.focus();
return (false);
}

return (true);
}