
// Array Function

function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the titles of the pages.

var choices = new makeArray("Artists' Feedback Pages",
						  " * * * * * * * * * * * * * * * ",
                          "Louise Adkins",
                          "Lauren Bon",
						  "Megan Goltermann",
                          "Ansel Krut",
                          "Lisa Le Grove",
                          "Susan Morris",
                          "Chris Nau",
                          "Yuriko Ogawa",
                          "Felicity Powell",
                          " * * * * * * * * * * * * * * * ",
                          "Salon Feedback Page");

// This array hold the URLs of the pages.

var urls = new makeArray("",
						  "#",
                          "hsfdbkla.html",
						  "hsfdbklb.html",
                          "hsfdbkmg.html",
                          "hsfdbkak.html",
                          "hsfdbklg.html",
                          "hsfdbksm.html",
                          "hsfdbkcn.html",
                          "hsfdbkyo.html",
                          "hsfdbkfp.html",
                          "#",
                          "hsfeedbk.html");

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.artists.selectedIndex;            
    if (i != 0) {
    location.href = urls[i];  
    }
}

// This function is for addendum popup windows

function open_window(url) {
addenda = window.open(url,"addendawin",'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=600,height=300');
	if (addenda.opener == null) addenda.opener = window;
addenda.opener.name = "opener";
}
