
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", "Accommodation Quick Selector");

newp("0", "");
newp("holiday_rentals.htm", "-- Villas And Homes --");
newp("fairway5.htm", "5th Fairway");
newp("bellevilla.htm", "Belle Villa");
newp("chez_willow.htm", "Chez Willow");
newp("hasta_manana.htm", "Hasta Manana");
newp("horizons.htm", "Horizon On Solander");
newp("mandalay.htm", "Mandalay Penthouse");
newp("omkara.htm", "Omkara");
newp("cottage-lodge.htm", "Port Douglas Cottage and Lodge");
newp("prada.htm", "Prada At Latitude 16");
newp("savannah.htm", "Savannah Villas");
newp("coconut_landing.htm", "Seven At The Beach");
newp("surya_port_douglas.htm", "Surya");
newp("bluehouse.htm", "The Blue House On Davidson");
newp("the_boathouse.htm", "The Boathouse");
newp("thornton.htm", "Thornton At St Crispins");

newp("0", "");
newp("holiday_apartments.htm", "-- Apartments And Units--");
newp("central_plaza.htm", "Central Plaza");
newp("dreamcatcher.htm", "Dreamcatcher Apartments");
newp("fullmoon.htm", "Full Moon Terrace");
newp("the_lazy_lizard_inn.htm", "Lazy Lizard Tropical Inn");
newp("macrossan_house.htm", "Macrossan House");
newp("maitai.htm", "Mai Tai Resort");
newp("marina_terraces.htm", "Marina Terraces");
newp("mowbray_by_the_sea.htm", "Mowbray by the Sea");
newp("palmvillas.htm", "Palm Villas");
newp("peninsula_boutique_hotel.htm", "Peninsula Boutique Hotel");
newp("reefclub.htm", "Reef Club");
newp("1416_davidson.htm", "Reefside Apartments");
newp("reflections_of_port_douglas.htm", "Reflections");
newp("regal_on_macrossan.htm", "Regal on Macrossan");
newp("the_point_apartments.htm", "The Point");
newp("portsea.htm", "The Port Sea");
newp("villa_san_michele.htm", "Villa San Michele");
newp("villa_sorento.htm", "Villa Sorento");

newp("0", "");
newp("daintree_holiday_accommodation.htm", "-- Daintree --");
newp("cloud9.htm", "Cloud 9");
newp("cockatoo_hill.htm", "Cockatoo Hill Retreat");
newp("daintree_wilderness_lodge.htm", "Daintree Wilderness Lodge");

newp("0", "");
newp("cairns_accommodation.htm", "-- Cairns --");
newp("central_plaza_cairns.htm", "Central Plaza");
newp("city_plaza.htm", "City Plaza");
newp("madison.htm", "Madison On Abbott");

newp("0", "");
newp("atherton_accommodation.htm", "-- Atherton Tableland --");
newp("atherton_accommodation.htm", "Allawah Rural Retreat");
newp("atherton_accommodation.htm", "Atherton Blue Gum");
newp("atherton_accommodation.htm", "Catbird Calling Cottage");
newp("atherton_accommodation.htm", "Crater Lakes Cottages");
newp("atherton_accommodation.htm", "Tinaroo Haven Holiday Lodge");
newp("atherton_accommodation.htm", "Tinaroo Waters Birds and Barra");


/***** 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);