Moodal Dialog Box form submit - not passing data

Moodal Dialog Box form submit - not passing data

First off, please excuse me if this is not the correct forum in which to post this question.  If there is a better place, please let me know.

I'm attempting to open a moodal box upon a form submit.  The box opens fine, but the GET data is not there on the other end.  If anyone has any ideas on direction, they would be much appreciated!  Thanks.

My working theory at this point is that the data isn't being passed correctly because of the way I'm calling the 'submit' event.

HTML:
  1. <html>
  2. <head>
  3. <link href="css/960.css" rel="stylesheet" type="text/css" media="all" />
    <link href="css/reset.css" rel="stylesheet" type="text/css" media="all" />
    <link href="css/text.css" rel="stylesheet" type="text/css" media="all" />
    <link href="css/blue.css" rel="stylesheet" type="text/css" media="all" />
    <link type="text/css" href="css/smoothness/ui.css" rel="stylesheet" />    




  4. <link rel="stylesheet" href="css/moodalbox.css" type="text/css" media="screen" />
      
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js" type="text/javascript"></script>
        <script src="js/mootools-1.2.4-core-nc.js" type="text/javascript"></script>
        <script src="js/moodalbox_for_mootools_1.2.js" type="text/javascript"></script>
       <script language="javascript" src="functions.js.php"></script>  
       <script type="text/javascript" src="js/accordion.js"></script>  
        <script type="text/javascript" src="js/jquery.blend.js"></script>
        <script type="text/javascript" src="js/ui.core.js"></script>
        <script type="text/javascript" src="js/ui.sortable.js"></script>   
        <script type="text/javascript" src="js/ui.dialog.js"></script>
        <script type="text/javascript" src="js/ui.datepicker.js"></script>
        <script type="text/javascript" src="js/effects.js"></script>
        <script type="text/javascript" src="js/flot/jquery.flot.pack.js"></script>













  5. </head>

  6. <body>
  7. <form method=get name='orderform' id='orderform'  action='order.form.php'>
  8. <input type="text" value="test">
  9. <input type='submit' id=submit value="continue">
  10. </form>
  11. </body>
  12. </html>
Javascript (functions.js)
  1. window.addEvent('domready',function(){
  2.        $('#submit').click(function (event) { 
          
          //Stop form submission 


  3.        event.preventDefault();
            

  4.          //Form validation
             if(checkRequired(document.getElementById('orderform'))){
                   


  5.                 //open dialog box 
  6.                 MOOdalBox.open(
                        "http://localhost/order.form.php",
                        "Report Process",
                        "600 500"
                    );
                               
                    var log = MOOdalBox.contents;
                       
                    this.send({
                        update: log,
                        onComplete: function() {
                            myTabs1 = new mootabs('myTabs',{height: '475px', width: '575px',                                     changeTransition: 'none', mouseOverClass: 'over'});
                        }
                    }); //end this.send
                }
           });   
    });