function Reset()
{
	if (window.document.emailContact)
    {
		window.document.emailContact.reset();
	}
}


function Verifica()
{
    if (window.document.emailContact)
    {

        var f_name = window.document.emailContact.f_name.value;
        var l_name = window.document.emailContact.l_name.value;
        var email = window.document.emailContact.email.value;
        var message = window.document.emailContact.message.value;
        var ok = "yes";
        var err = 0

        if (f_name == "")
        {
            alert("Insert the first name, please!");
            window.document.emailContact.f_name.focus();
            return false;
        }
        if (l_name == "")
        {
            alert("Insert the last name, please!");
            window.document.emailContact.l_name.focus();
            return false;
        }
        if (email == "")
        {
            alert("Insert the email, please!")
            window.document.emailContact.email.focus();
            return false;
        }
        if ((email != "")&&(email.indexOf ('@',0) == -1 || email.indexOf ('.',0) == -1))
        {
            alert("The E-Mail address must contain a '@' and a '.'. Insert your e-mail address again, please.")
            window.document.emailContact.email.select();
            window.document.emailContact.email.focus();
            return false;
        }
        if (true != true)
        {
            alert("")
            return false;
        }
        else
        {
            window.document.emailContact.submit();
            return true;
        }
    } // end if (window.document.emailContact)

    if (window.document.frmNewsletter)
    {

        var email = window.document.frmNewsletter.email.value;
        var ok = "yes";
        var err = 0

    
        if (email == "")
        {
            alert("Insert the email, please!")
            window.document.frmNewsletter.email.focus();
            return false;
        }
        if ((email != "")&&(email.indexOf ('@',0) == -1 || email.indexOf ('.',0) == -1))
        {
            alert("The E-Mail address must contain a '@' and a '.'. Insert your e-mail address again, please.")
            window.document.frmNewsletter.email.select();
            window.document.frmNewsletter.email.focus();
            return false;
        }
        if (true != true)
        {
            alert("")
            return false;
        }
        else
        {
            window.document.frmNewsletter.submit();
            return true;
        }
    } // end if (window.document.frmNewsletter)

} // end function Verifica()

