
      /**********

          file:              escape_help.js
          created:     19 nov 2007
          topic:          Open new window showing Escape Velocity info

          updates:
               20 nov 2007
                    1 )  Fixed error:
                          The value assigned to my_win_name must be a single word

               10 feb 2008
                    1 ) To the my_list string we added   toolbar=yes and  location=yes

               15 feb 2008
                    1 ) To the my_list string we added  menubar=yes
                 
              
      **********/


    function             launch_escape_velocity_window ( )
         {
                var          my_url  =  "escape_box/escape.htm" ;

                var          my_win_name  =  "Escape_Velocity_etc" ;  // NO SPACES ALLOWED IN THIS NAME

                //////////  var          my_list  =  "scrollbars=yes, width=910, height=500, status=no, resizable=yes" ;
                //////      var          my_list  =  "toolbar=yes, location=yes, scrollbars=yes, width=910, height=500, status=no, resizable=yes" ;
                var          my_list  =  "menubar=yes,toolbar=yes, location=yes, scrollbars=yes, width=910, height=500, status=no, resizable=yes" ;

                var          x_1  =  window.open ( my_url, my_win_name, my_list ) ;

       } // launch_escape_velocity_window





