

function validar (form) 
{
	if (document.getElementById('txtUsuario').value == '' || !isValidEmail(document.getElementById('txtUsuario').value))
	{
		alert('Debe ingresar su Mail o el mismo es incorrecto');
		document.getElementById('txtUsuario').focus();
		return 0;
	}
	
	if(document.getElementById('divClave').style.display == 'block') {
	    if (document.getElementById('txtPassword').value=='')
	    {
		    alert('Debe ingresar su password');
		    document.getElementById('txtPassword').focus();
		    return 0;
	    }
	}
	document.getElementById(form).submit();
}