// JavaScript Document+
//*****************************************************************************
// OPCIONES JAVASCRIPT DE USO GENERAL EN TODAS LAS PAGINAS
//*****************************************************************************
var ventanaG="Vgrande";
function AbrirVentana(URL) {
VentanaG=window.open(URL,ventanaG,"toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,width=500,height=500,resizable=1");
VentanaG.focus();
}
function AbrirVentaPeq(URL,ancho,alto,scroll,resizable,top,left) {
VentanaP=open(URL,"ventanapeq","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable="+resizable+",width="+ancho+",height="+alto+",top="+top+",left="+left+"");
VentanaP.focus();
}
function Biblioteca(URL) {
VentanaB=open(URL,"biblioteca",'toolbar=0,scrollbars=1,location=0,statusbar=1,menubar=0,resizable=1,width=800,height=600,left = 0,top = 0');
VentanaB.focus();
}
function ampliaimagen(URL,ancho,alto,scroll,resizable,top,left) {
VentanaP=open(URL,"ventanapeq","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+scroll+",resizable="+resizable+",width="+ancho+",height="+alto+",top="+top+",left="+left+"");
VentanaP.focus();
}
