function validation(form){
	if (isEmpty('usuario', true))
		return false;
	if (isEmpty('contrasena', true))
		return false;
	document.getElementById("Ingresar").disabled = true;
	form.submit();
}