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", "Please select...");

newp("0", "");
newp("palm_cove_houses.html", "----- Holiday Homes -----");
newp("aquatica.html", "Aquatica");
newp("bargara.html", "Bargara By The Sea");
newp("brindabella.html", "Brindabella");
newp("buchanbeach.html", "Buchan Beach House");
newp("bungalowpalmcove.html", "Bungalow");
newp("casadelmar.html", "Casa Del Mar");
newp("cassowary_court.html", "Cassowary Court");
newp("castaway.html", "Castaway Argentea");
newp("celadon.html", "Celadon");
newp("chalettropica.html", "Chalet Tropica");
newp("larasati.html", "Larasati");
newp("pavillion.html", "Palm Cove Pavillion");
newp("samaya.html", "Samaya Argentea");
newp("savu.html", "Savu");
newp("segarabai.html", "Segara Bai");
newp("sukawatti.html", "Sukawatti");
newp("tropica.html", "Tropica");
newp("tropicalessence.html", "Tropical Essence");
newp("villablue.html", "Villa Blue");
newp("villanautica.html", "Villa Nautica");
newp("tojaca.html", "Villa Tojaca");
newp("whitehouse.html", "White House");
newp("whitejungle.html", "White Jungle");

newp("0", "");
newp("palm_cove_apartments.html", "----- Holiday Apartments -----");
newp("spindle.html", "Blue Cowrie");
newp("drift2.html", "Drift - 2 Bedroom");
newp("jewel.html", "Jewel In The Reef");
newp("maxplace.html", "Maxs Place");
newp("munbilla2.html", "Munbilla 2");
newp("munbilla4.html", "Munbilla 4");
newp("santai.html", "Munbilla Santai");
newp("opalreef.html", "Opal Reef");
newp("oasis.html", "Oasis Palm Cove");
newp("paringa.html", "Paringa Palm Cove");
newp("bliss.html", "Tranquility Bliss");

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);

