// visualisation carto google pour 2 arręts function getGoogleMapPoints(id1, id2, nom1, nom2, depID, arrID) { 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=" + id1 + "&pa_id2=" + id2; //var URL_PLAN = "http://web03.cityway.fr/busoceane/ri/cartegoogle.asp?pa_id1=" + id1 + "&pa_id2=" + id2; var URL_PLAN = URL_PLAN + "&dep_nom=" + nom1 + "&arr_nom=" + nom2; var URL_PLAN = URL_PLAN + "&dep_id=" + depID + "&arr_id=" + arrID; var newWindow = window.open(URL_PLAN, 'MAP', parametre_fenetre); newWindow.focus(); } // visualisation carto google pour 2 objets function getMapPoint(id1, id2, nom1, nom2, depID, arrID, type1, type2) { 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=" + id1 + "&pa_id2=" + id2; //var URL_PLAN = "http://web03.cityway.fr/busoceane/ri/cartegoogle.asp?pa_id1=" + id1 + "&pa_id2=" + id2; var URL_PLAN = URL_PLAN + "&dep_nom=" + nom1 + "&arr_nom=" + nom2; var URL_PLAN = URL_PLAN + "&dep_id=" + depID + "&arr_id=" + arrID; var URL_PLAN = URL_PLAN + "&dep_type=" + type1 + "&arr_type=" + type2; var newWindow = window.open(URL_PLAN, 'MAP', parametre_fenetre); newWindow.focus(); }