function newArray()
{
  var a = newArray.arguments;

  for ( var i=0; i<a.length; i++ )
  {
    this[i] = a[i];
  }

  this.length = a.length;
}

var urls1 = new newArray("",
"/Examinations/step1/step1.html",
"/Examinations/step2/step2ck.html",
"/Examinations/step2/step2cs.html",
"/Examinations/step3/step3.html",
"/General_Information/general_information_bulletin.html",
"/General_Information/announcements.html",
"/General_Information/general_information_contact.html",
"/site-map.html");

function go ( which, num, win )
{
  var n = which.selectedIndex;

  if ( n != 0 )
  {
    var url = eval ( "urls" + num + "[n]" )
    if ( win )
    {
      openWindow ( url );
    }
    else
    {
      location.href = url;
    }
  }
}
