var ventana = null;
function abreVentana(URL,nombreVentana,ancho,alto){
	posicionIzquierda = (screen.width) ? (screen.width-ancho)/2 : 0;
	posicionSuperior = (screen.height) ? (screen.height-alto)/2 : 0;
	opcionesVentana = 'height='+alto+',width='+ancho+',top='+posicionSuperior+',left='+posicionIzquierda+',scrollbars=no';
	ventana = window.open(URL,nombreVentana,opcionesVentana);
}
