/* ................................................. */
/* file: fnbiscripts.js                              */
/* author:Ted O'Hara                                 */
/* module: CMS/FNBI                                  */
/* purpose: FNBI specific scripts                    */                       
/* Created: 08/07/2006                               */
/* Copyright (C) 2006 bx.com, Inc.                   */
/* ................................................. */ 


if (document.getElementById)
  {
    var formbuttons = ['mode_reg','mode_enroll']
    var thisbutton;
    for (var i = 0; i < formbuttons.length; i++)
      {
        thisbutton = document.getElementById(formbuttons[i])
        thisbutton.btype = thisbutton.id.split('_')[1]
        thisbutton.selector = document.getElementById(thisbutton.btype + 'selector')
        thisbutton.onclick = function(){window.location = this.selector.options[this.selector.selectedIndex].value; return false}
      }  
  }

