// JavaScript Document
function abrir_popup(id){
	document.getElementById('bloqueador').style.display = 'inline';
	document.getElementById('popup'+id).style.display = 'inline';
}
function cerrar_popup(id){
	document.getElementById('bloqueador').style.display = 'none';
	document.getElementById('popup'+id).style.display = 'none';
}

function abrir_buscador(){

	document.getElementById('bloqueador_buscador').style.height = document.body.scrollHeight+'px';
	document.getElementById('bloqueador_buscador').style.display = 'inline';
	document.getElementById('buscador').style.display = 'inline';
}
function cerrar_buscador(){
	document.getElementById('bloqueador_buscador').style.display = 'none';
	document.getElementById('buscador').style.display = 'none';
}

function abrir_cliente(){
	document.getElementById('bloqueador_cliente').style.height = document.body.scrollHeight+'px';
	document.getElementById('bloqueador_cliente').style.display = 'inline';
	document.getElementById('cliente').style.display = 'inline';
}
function cerrar_cliente(){
	document.getElementById('bloqueador_cliente').style.display = 'none';
	document.getElementById('cliente').style.display = 'none';
}

function abrir_entorno(){
	document.getElementById('bloqueador_entorno').style.height = document.body.scrollHeight+'px';
	document.getElementById('bloqueador_entorno').style.display = 'inline';
	document.getElementById('entorno').style.display = 'inline';
}
function cerrar_entorno(){
	document.getElementById('bloqueador_entorno').style.display = 'none';
	document.getElementById('entorno').style.display = 'none';
}


function abrir(destino,ancho,alto){
ventana = window.open (destino,"ventana","height="+alto+",width="+ancho+",menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,left=0,top=0");
ventana.focus();
}

function enviar_entorno(){
	//alert('enviar_entorno');
	//alert(document.getElementById('entorno-usuario').value);
	//alert(document.getElementById('area-usuario').value);
	
	document.getElementById('formulario-tienda').action = 'http://centro.educaline.com/auth/autorizacion.aspx';
	document.getElementById('usuario').value = document.getElementById('area-usuario').value;
	document.getElementById('password').value = document.getElementById('area-password').value;
	document.getElementById('formulario-tienda').submit();
}

function enviar_area(){
	document.getElementById('formulario-tienda').action = 'https://cliente.educaline.com/auth/autorizacion.aspx';
	document.getElementById('usuario').value = document.getElementById('entorno-usuario').value;
	document.getElementById('password').value = document.getElementById('entorno-password').value;
	document.getElementById('formulario-tienda').submit();
}



/********************************** ABRIR **************************************/
function abrir(destino,ancho,alto){

ventana = window.open (destino,"ventana","height="+alto+",width="+ancho+",menubar=no,resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,left=0,top=0");
ventana.focus();
}
function abrir_s(destino,ancho,alto){
ventana = window.open (destino,"ventana","height="+alto+",width="+ancho+",menubar=no,resizable=no,scrollbars=yes,status=no,titlebar=no,toolbar=no,left=0,top=0");
ventana.focus();
}

