// ouverture du plan d'un lieu public function getMapPublicPlace(id, name) { var parametre_fenetre = 'scrollbars=yes,width=600,height=600,top=50,left=50;menubar=no,resizable=yes'; var URL_PLAN = "/ri/cartegoogle.asp?pa_id1=" + id + "&p_id2="; var URL_PLAN = URL_PLAN + "&lp_nom1=" + name; var newWindow = window.open(URL_PLAN, 'MAP', parametre_fenetre); newWindow.focus(); }