//
// main.js
// Paul Dragicevich, 10/12/2007
//
// Main form javascript.
//

var Main = Main ? Main : new Object();





//
// Main.Load
//
Main.Load = function ()
{
   Main.FocusFirstTextbox();
}

//
// Main.FocusFirstTextbox
// Find if there's any text fields in the page and focus the first one.
//
Main.FocusFirstTextbox = function ()
{
   var input = document.getElementsByTagName('input');
   var i;
   var inputIndex;
   for ( inputIndex = 0 ; inputIndex < input.length ; inputIndex++ )
   {
      i = input[inputIndex];
      if ( i.type === 'text' )
      {
         i.focus();
         break;
      }
   }
}







Event.observe(window,'load',Main.Load,false);

