function validar_login()
{
if (document.frmlogin.txtnick.value=='')
{
alert('Debe ingresar Email');
document.frmlogin.txtnick.focus();
return false;
}


if (document.frmlogin.txtpass.value=='')
{
alert('Debe ingresar su password');
document.frmlogin.txtpass.focus();
return false;
}

return true

}


function maximaLongitud(texto,maxlong)
{
var tecla, int_value, out_value;

if (texto.value.length > maxlong)
{
/*con estas 3 sentencias se consigue que el texto se reduzca
al tamaņo maximo permitido, sustituyendo lo que se haya
introducido, por los primeros caracteres hasta dicho limite*/
in_value = texto.value;
out_value = in_value.substring(0,maxlong);
texto.value = out_value;
alert("La longitud maxima es de " + maxlong + " caracteres");
return false;
}
return true;
}