function inclulog(){
	moslog();
	ajax("g","","login","http://divandu.com.ar/Login/formulario_login.php");
}
function moslog(){
	document.getElementById("oscurecer").style.display='block';
	document.getElementById("login").style.display='block';
	document.body.style.overflow='hidden';
	document.getElementById("login").innerHTML="<img src=\"http://divandu.com.ar/img/load.gif\">";
}
function oculog(){
	document.getElementById("oscurecer").style.display='none';
	document.getElementById("login").innerHTML="";
	document.getElementById("login").style.display='none';
	document.body.style.overflow='normal';
	}

function login(){
var Formulario = document.getElementById("flogin");
var longitudFormulario =Formulario.elements.length;
var cadenaFormulario = "";
var sepCampos="";
for (var i=0; i <= Formulario.elements.length-1;i++) {
	cadenaFormulario += sepCampos+Formulario.elements[i].name+'='+encodeURI(Formulario.elements[i].value); sepCampos="&";
}
document.getElementById("login").innerHTML="<img src=\"http://divandu.com.ar/img/load.gif\">";
ajax("p",cadenaFormulario,"login","http://divandu.com.ar/Login/loguear.php");
}
function enter(e) {
  tecla = (document.all) ? e.keyCode : e.which;
  if (tecla==13) document.forms.flogin.submit();
}
