function Abrir_Ventana(enlace, nombre_ventana, ancho, alto)
{
	w = ancho;
	h = alto;
	x = (screen.width / 2) - (w / 2);
	y = (screen.height / 2) - (h / 2);
	var parametros = "top=" + y + ", left=" + x + ",toolbar=no, location=no, status=no, menubar=no, scrollbars=no, resizable=no, width=" + w + ", height=" + h;
	window.open(enlace, nombre_ventana, parametros);
}