// ================================================
// Author:      Sara Seissiger - SARK
// Created:     December 09, 2002
// Modified:    December 12, 2002 pg
//                - Added Comments
// ================================================

var areCreated = true;

// ------------------------------------------------
// monthDisplay()
//   - returns the Proper name of the month

function monthDisplay()
  {
  today = new Date();
  m = new Array(
    "January","February",
    "March","April","May",
    "June","July","August",
    "September","October",
    "November","December"
    );
  return m[today.getMonth()];
  }


// ------------------------------------------------
// urlloader()
//   - redirects the user based on the selection

function urlloader(form)
  {
  newurl=form.list.options[form.list.selectedIndex].value;
  if (form.list.options[form.list.selectedIndex].text.indexOf("Please enable Java or update your browser")!=-1) 
    {
    form.reset();
    top.location.href = newurl;
    }
  else 
    {
    form.reset();
    location.href = newurl;
    }
  }



