// Ventanas centradas
//
// url		direccion de la pagina a abrir en la ventana pop up
// ancho	ancho ventana 
// alto		alto de la ventana
// barras	a 0, sin barras de desplazamiento
//		a 1, con barras
function nueva_ventana(url, ancho, alto, barras)
{
	izquierda = (screen.width) ? (screen.width - ancho) / 2 : 100;
	arriba = (screen.height) ? (screen.height - alto) / 2 : 100;
	opciones = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=' + barras + ',resizable=0,width=' + ancho + ',height=' + alto + ',left=' + izquierda + ',top=' + arriba + '';
	window.open(url,'',opciones)
}

//UTILIZACION
//<!-- Enlace para abrir la pagina popUp.html en una ventana pop up centrada -->
//<a href="/ejemplos/popUp.html" onclick="nueva_ventana(this.href,'390','180','0'); return false">Pop Up centrada</a>