
// Init Search Page
//
// Purpose is to perform any initialization to the search page.  Currently
// this function just set the initial field focus.
// 
// Parameters
//    Start Field.
//
// History:
// 05/12/00 initial development.

function initpage(intfld) { 
 
   // Set Field focus if passed and not hidden.
   if (intfld != "" && document.forms[0].elements[intfld].type != "hidden") {
      document.forms[0].elements[intfld].focus()
   }
   
  
   
}
