/*
 * redirect.js
 * Rohan Talip
 * 18th February 2003
 *
 * Function to redirect to another page.
 */
function redirect(select)
{
  var index = eval(select + ".selectedIndex");
  var page = eval(select + ".options[index].value");

  if (page != "")
  {
      window.location.href = page;
  }
}
