var entrar;
var salir;
var subentrar;
var subsalir;
var fondo;
var fondosalir;
var textoentrar;
var textosalir;
//Colores del texto del área
var entrar_area;
var salir_area;

entrar_area="yellow";
salir_area="white";

//Colores de la botonera
entrar="#FFFFFF";//color texto home al pasar por encima Blanco
salir="#0000ff";//color texto home al salir de acceso alumnos y Boletín
subentrar="#FFFFFF";//color texto home al pasar por encima - Blanco
subsalir="#000000";//color texto mebnú izda al quedar - Negro
subclick="#A08750";//color texto menú izda si ha hecho click
fondo="#37ACFD";//color fondo botonera#206FBF
fondosalir="white"//fondosalir="#37ACFD";color fondo botonera
textoentrar="white";//textoentrar="#F8FB17";//color texto botonera
textosalir="#206FBF"//textosalir="white";//color texto botonera




//Para abrir ventanas


function ver_info( cual, w,h)
{
	var ancho=w;
	var alto=h;
	var posx=(screen.width - ancho) /2;
	var posy=(screen.height - alto) /2;
	popupWin = window.open(cual, 'Solicitar', 'toolbar=0,location=0,directories=0, status=0,menubar=0,scrollbars=1,width=' + ancho + ',height=' + alto + ',top=' + posy + ',left=' + posx + 'resizable=0');
}

function visitas( cual, w,h)
{
	var ancho=w;
	var alto=h;
	var posx=0;
	var posy=5;
	popupWin = window.open(cual, 'Solicitar', 'toolbar=1,location=0,directories=0, status=1,menubar=1,scrollbars=1,width=' + ancho + ',height=' + alto + ',top=' + posy + ',left=' + posx + 'resizable=1');
}


// Fin abrir ventanas
