function openPopup(url){
ancho=520; alto=340;
var _W=window.open(url,'Map',"scrollbars=yes,width="+ancho+",height="+alto);
_W.focus();
iz=(screen.width-ancho) / 2;
de=(screen.height-alto) / 2;
_W.moveTo(iz,de);
}
