<!--//
/***
   Javascript code to refresh browser window to selected category
   webpage in dropdown box
***/

function buildArray() {
     var a = buildArray.arguments;
     for (i=0; i<a.length; i++) {
          this[i] = a[i];
     }
     this.length = a.length;
}
/*** 
  Place your list of webpage links here - this corresponds to the list of 
  choices that you've put into your dropdown box

***/
var urls1 = new buildArray("",

"http://www.lakemichigancollege.edu/pstudent.html",
"http://www.lakemichigancollege.edu/cstudent.html",
"http://www.lakemichigancollege.edu/cbs/index.html",
"http://www.lakemichigancollege.edu/alumni/index.html",
"http://www.lakemichigancollege.edu/visitors.html",
"http://www.lakemichigancollege.edu/arts_ent.html",
"http://www.lakemichigancollege.edu/staff.html",
"http://www.lakemichigancollege.edu/search.html");

/***
   The javascript function that opens the selected page opens the
    referenced page in the current browser window - change the _parent
	reference if you want this to open in a new window
***/
	
function go(which, num, win) {
     n = which.selectedIndex;
     if (n != 0) {
          var url = eval("urls" + num + "[n]")
          if (win) {
               openWindow(url);
          } else {
               window.open(url, "_parent");
          }
     }
}
// -->