// ouverture du plan d'un dépositaire function getMapSalePoint(id) { var parametre_fenetre = 'scrollbars=yes,width=500,height=550,top=50,left=50;menubar=no,resizable=no,scrollbars=no'; var URL_PLAN = "/ri//carto.asp?_XgoAntialias=1&_XgoScaleMode=0&_XgoStreetFitStyle=maporama_en"; var URL_PLAN = URL_PLAN + "&areacode=FR&sizex=400&sizey=300"; var URL_PLAN = URL_PLAN + "&dep_id=" + id; var newWindow = window.open(URL_PLAN, 'MAP',parametre_fenetre); newWindow.focus(); }