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("casadelmar.html", "Casa Del Mar");
newp("larasati.html", "Larasati");
newp("latte.html", "Latte");
newp("chalettropica.html", "Santorini");
newp("savu.html", "Savu");
newp("seanna.html", "Seanna");
newp("sukawatti.html", "Sukawatti");
newp("sunnydays.html", "Sunny Days Villa");
newp("palms.html", "The Palms");
newp("tropicalessence.html", "Tropical Essence");
newp("tojaca.html", "Villa Tojaca");
newp("whitehouse.html", "White House");

newp("0", "");
newp("palm_cove_apartments.html", "----- Holiday Apartments -----");
newp("jewel.html", "Angsana Penthouse");
newp("cassowary_court.html", "Cassowary Court");
newp("mangolagoon.html", "Mango Lagoon");
newp("munbilla2.html", "Munbilla 1");
newp("santai.html", "Munbilla Santai 9");
newp("munbilla11.html", "Munbilla Santai 11");
newp("opalreef.html", "Opal Reef");
newp("paringa2.html", "Paringa 2 Palm Cove");
newp("paringa.html", "Paringa 4 Palm Cove");
newp("seatemple120.html", "Sea Temple 120");
newp("seatempleph.html", "Sea Temple Penthouse");
newp("spindle230.html", "Spindle Cowrie 230");
newp("tiger115.html", "Tiger Cowrie 115");
newp("bliss.html", "Tranquility Bliss");
newp("relax.html", "Tranquility Relax");

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);


