<!--

/***********************************************************************/
/*							 validarIngreso						   	   */
/***********************************************************************/
function validarIngreso() 
{
 if(document.frmIngreso.txtUsuario.value=="")
 	{
		alert('Debe ingresar el nombre de usuario');
		document.frmIngreso.txtUsuario.focus();
		return false;
	}

 if(document.frmIngreso.txtPassword.value=="")	
 	{
		alert('Debe ingresar el password.');
		document.frmIngreso.txtPassword.focus();
		return false;
	}
return true;
}

function validarIngreso2()
{
 if(document.frmIngreso2.txtUsuario.value=="")
 	{
		alert('Debe ingresar el nombre de usuario');
		document.frmIngreso2.txtUsuario.focus();
		return;
	}

 if(document.frmIngreso2.txtPassword.value=="")	
 	{
		alert('Debe ingresar el password.');
		document.frmIngreso2.txtPassword.focus();
		return;
	}
document.frmIngreso2.submit();
}


-->
