
var mapWindow;

function openMap(url, width, height) {
    mapWindow = window.open(url,
                    'map_window',
                    'scrollbars=no,resizable=no,location=no,status=no,' + 
                    'height=' + height + ',' + 
                    'width=' + width); 
    mapWindow.focus();   
}


