function popup_detail(id, jsessionid) {

  var url = "details;jsessionid=" + jsessionid + "?id=" + id ;
  
   if(typeof ms_app_path != 'undefined') {
     url = ms_app_path + url;
   }
  
   if(typeof ms_client != 'undefined') {
     url = url + "&client="+ms_client;
   }
   if(typeof ms_locale != 'undefined') {
     url = url + "&locale="+ms_locale;
   }
   
   window.open(url, "MapSight_Details", "HEIGHT=640 ,WIDTH=630 ,RESIZABLE=1,SCROLLBARS=1,STATUS=0,LOCATION=0,TOOLBAR=0,MENUBAR=0");

};


function popup_window(url, name, width, height) {

	window.open(url, name, "HEIGHT="+height+" ,WIDTH="+width+" ,RESIZABLE=1,SCROLLBARS=0,STATUS=0,LOCATION=0,TOOLBAR=0,MENUBAR=0");

};

