var properties = new Array();
	properties["url"] = new Array();
	properties["name"] = new Array();

function psh(a, v) {
	a[a.length] = v;
}

function newp(u, n) {
	psh(properties["url"], u);
	psh(properties["name"], n);
}

/***** BEGIN PROPERTY LIST *****/

newp("0", "Property Quick Selector");

newp("0", "");
newp("cooktownbeach.html", "Absolute Beachfront Cooktown");
newp("kimberly.html", "Cape Trib Road - Cape Kimberly");
newp("nicola.html", "Cape Tribulation Lifestyle");
newp("clackerty.html", "Clackerty Road - Julatten");
newp("cooktownhome.html", "Cooktown Family Home");
newp("cooktownshop.html", "Cooktown Shop");
newp("cooktownwine.html", "Cooktown Wine");
newp("crocodylus.html", "Crocodylus Village");
newp("dagamar.html", "Dagmar Heights Sub-Division");
newp("forrestcreek.html", "Forrest Creek Road");
newp("froghollow.html", "Frog Hollow Farm - Forest Creek");
newp("greenerpastures.html", "Greener Pastures");
newp("hillside.html", "Hillside Forest Block");
newp("mowbray.html", "Mowbray Acreage");
newp("quarantinebay.html", "Quarantine Bay Hideaway");
newp("palmroad.html", "Palm Road - Daintree");
newp("rykers.html", "Rykers Road - Cape Tribulation");
newp("wallaby.html", "Wallaby Creek");
newp("whatanopportunity.html", "What An Opportunity!");
newp("wongabeach.html", "Wonga Beach Family Home");
newp("boral.html", "Wonga Beach Family Home");
newp("0", "");

/***** END PROPERTY LIST *****/

html = "<select name=\"products\" onChange=\"clickto(this.form)\" size=\"1\" class=\"props\">\n";
html += " <option value=\"" + properties["url"][0] + "\" selected>" + properties["name"][0] + "</option>\n";
for (i = 1; i < properties["url"].length; i++) {
	html += " <option value=\"" + properties["url"][i] + "\">" + properties["name"][i] + "</option>\n";
}
html += "</select>\n";

document.write(html);