
      /**********

          file:             uniform_help.js
          created:    07 dec 2007
          topic:         Open new window showing Uniform Circular Motion info

          Note:         Make sure that the value assigned to my_win_name is a single word

          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_uniform_circle_window ( )
         {
                var          my_url  =  "uniform_box/uniform.htm" ;

                var          my_win_name  =  "U_Circ_Motion" ;  // 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_uniform_circle_window




