var clinics = new Array();
	clinics["url"] = new Array();
	clinics["name"] = new Array();

function psh(a, v) {
	a[a.length] = v;
}

function newp(u, n) {
	psh(clinics["url"], u);
	psh(clinics["name"], n);
}

/***** BEGIN CLINIC LIST *****/

newp("0", "Select A Clinic...   ");

newp("adelaide.html", "Adelaide");
newp("alicesprings.html", "Alice Springs");
newp("brisbane.html", "Brisbane");
newp("burnie.html", "Burnie");
newp("cairns.html", "Cairns");
newp("geelong.html", "Geelong");
newp("goldcoast.html", "Gold Coast");
newp("goondiwindi.html", "Goondiwindi");
newp("hobart.html", "Hobart");
newp("newcastle.html", "Maitland");
newp("melbourne.html", "Melbourne");
newp("newcastle.html", "Newcastle");
newp("perth.html", "Perth");
newp("rockhampton.html", "Rockhampton");
newp("sunshine.html", "Sunshine Coast");
newp("sydney.html", "Sydney");
newp("toowoomba.html", "Toowoomba");
newp("townsville.html", "Townsville");
newp("yeppoon.html", "Yeppoon");

/***** END CLINIC LIST *****/

html = "<select name=\"products\" onChange=\"clickto(this.form)\" size=\"1\" class=\"props\">\n";
html += " <option value=\"" + clinics["url"][0] + "\" selected>" + clinics["name"][0] + "</option>\n";
for (i = 1; i < clinics["url"].length; i++) {
	html += " <option value=\"" + clinics["url"][i] + "\">" + clinics["name"][i] + "</option>\n";
}
html += "</select>\n";

document.write(html);