﻿// Validation of Login From

function Validate()
{
	if
	(
	    (
	        document.frm.email.value.length != 0 
	        && ! C_isValidEmail(document.frm.email.value)
        ) 
	    || document.frm.email.value.length == 0
	    || document.frm.email.value.length > 50
	)
	{
		//alert('Please enter a valid email address.');
        if(LanguageCode == "en")
        {
		    alert('Please enter your email address.');
        }
		else
		{
		    alert('Por favor, escribe tu dirección completa de correo electrónico.');
        }
		document.frm.email.focus();

		return false;
	}

    return true;	
}