<!--
//Formular Validator


function Form_Validator(kontakt)
{

if (kontakt.name.value == "")
{
alert('please fill in name.');
kontakt.name.focus();
return (false);
}

if (kontakt.firma.value == "")
{
alert('please fill in company.');
kontakt.firma.focus();
return (false);
}

if (kontakt.mail.value == "")
{
alert('please fill in your email address.');
kontakt.mail.focus();
return (false);
}

}
//-->

