//Abrir ventana flotante
function finestra(url,ancho,alto,nombre){
	var posx = (screen.width-ancho)/2;
	var posy = (screen.height-alto)/2;
	window.open(url,nombre,'toolbar=0, resizable=0, location=0,status=0,directories=0,menubar=0,scrollbars=1,width='+ancho+',height='+alto+',left='+posx+',top='+posy);	
}
//Abrir ventana flotante sin barra de scroll
function finestra2(url,ancho,alto,nombre){
	var posx = (screen.width-ancho)/2;
	var posy = (screen.height-alto)/2;
	window.open(url,nombre,'toolbar=0, resizable=0, location=0,status=0,directories=0,menubar=0,scrollbars=0,width='+ancho+',height='+alto+',left='+posx+',top='+posy);	
}

//Función para llamar a un archivo .PDF
function lanzarPDF(url) {
	var ancho = 700;
	var alto = 500;
	var posx = (screen.width-ancho)/2;
	var posy = (screen.height-alto)/2;
	var nombre = 'ARCHIVOSPDFS';
	ventana2(url,nombre,'toolbar=0, resizable=0, location=0,status=0,directories=0,menubar=0,scrollbars=1,width='+ancho+',height='+alto+',left='+posx+',top='+posy);
}


