<!--

function validar_entrada()
{ 
	if (document.f1.identif.value == "") 
		{
		alert("Debe indicar su Identificativo");
		document.f1.identif.focus();
		}
	else
		{
		if (document.f1.identif.value.length < 6)
			{
			alert("El usuario debe tener de 6 a 8 caracteres");
			document.f1.identif.select() 
			document.f1.identif.focus();
			}
			else
				vclave();
		}
};//End function

function validar_entradaf2()
{ 
	if (document.f2.identif.value == "") 
		{
		alert("Debe indicar su Identificativo");
		document.f2.identif.focus();
		}
	else
		vclavef2();
};//End function


function vclave()
{ 
	if (document.f1.clave.value == "") 
	{
	alert("Debe indicar su clave."); 
	document.f1.clave.focus();
	}
	else
		{
		if (document.f1.clave.value.length < 6)
			{
			alert("La contraseņa debe tener de 6 a 8 caracteres");
			document.f1.clave.select() 
			document.f1.clave.focus();
			}
			else
				document.f1.submit();
		}
};//End function

function vclavef2()
{ 
	if (document.f2.clave.value == "") 
	{
	alert("Debe indicar su clave."); 
	document.f2.clave.focus();
	}
	else
		document.f2.submit();
};//End function


//-->

