function getMapPoint(pa_id1, pa_id2) { var parametre_fenetre = 'scrollbars=yes,width=600,height=600,top=50,left=50;menubar=no,resizable=yes'; var URL_PLAN = "/ri/CarteGoogle.asp?"; if (pa_id2!="" && pa_id1=="") { var URL_PLAN = URL_PLAN + "pa_id1="+pa_id2; } if (pa_id2=="" && pa_id1!="") { var URL_PLAN = URL_PLAN + "pa_id1="+pa_id1; } if (pa_id2!="" && pa_id1!="") { var URL_PLAN = URL_PLAN + "pa_id1="+pa_id1; var URL_PLAN = URL_PLAN + "&pa_id2="+pa_id2; } newWindow = window.open(URL_PLAN, '',parametre_fenetre); } function getMapStartPoint(x, y, nom, pa_id) { 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="+pa_id; if (nom!="") { var URL_PLAN = URL_PLAN + "&depnom="+nom+"&depx="+x+"&depy="+y; } newWindow = window.open(URL_PLAN, '',parametre_fenetre); } function getMapArrivalPoint(x, y, nom, pa_id) { var parametre_fenetre = 'scrollbars=yes,width=600,height=600,top=50,left=50;menubar=no,resizable=yes'; var URL_PLAN = "/ri/CarteGoogle.asp?pa_id2="+pa_id; if (nom!="") { var URL_PLAN = URL_PLAN + "&arrnom="+nom+"&arrx="+x+"&arry="+y; } newWindow = window.open(URL_PLAN, '',parametre_fenetre); } function getMapStartPlace(lpnom, lpcom, pa_id) { 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="+pa_id; if (lpnom!="") { var URL_PLAN = URL_PLAN + "&lp_nom2="+lpnom; var URL_PLAN = URL_PLAN + "&lp_com="+lpcom; } newWindow = window.open(URL_PLAN, '',parametre_fenetre); } function getMapArrivalPlace(lpnom, lpcom, pa_id) { var parametre_fenetre = 'scrollbars=yes,width=600,height=600,top=50,left=50;menubar=no,resizable=yes'; var URL_PLAN = "/ri/CarteGoogle.asp?pa_id2="+pa_id; if (lpnom!="") { var URL_PLAN = URL_PLAN + "&lp_nom1="+lpnom; var URL_PLAN = URL_PLAN + "&lp_com="+lpcom; } newWindow = window.open(URL_PLAN, '',parametre_fenetre); }