// JavaScript Document

function AbrirCentrado(Url) {
var ancho = 400;
var alto = 600;
var superior = (screen.height-alto)/2;
var izquierda = (screen.width-ancho)/2;

nuevaVentana=window.open(''+ Url + '','' + '' + '','width=' + ancho + ',height=' + alto + ',top=' + superior + ',left=' + izquierda + '', 'resizable=' + "no");

nuevaVentana.focus();
}

