// This function changes the colour of the nav button when moused over
function swapit(what)
	{
	document.getElementById(what).style.backgroundColor = "brown";
	}

// This function returns the colour of the nav button when moused out
function swapitback(what)
	{
	document.getElementById(what).style.backgroundColor = "transparent";
	}

// This function puts the relevant page in the content area
function FUNjumppage(going)
	{
	parent.content.location.href = going
	}

function FUNpropnumrequest(reqnum)
	{
	if ((parseInt(reqnum.value) > 0) && (parseInt(reqnum.value) < 161))
		{
		parent.document.all[plotselect].value = reqnum.value;
		}
	else
		{
		parent.document.all[plotselect].value = "0";
		}
	parent.content.location.href = "results_request.html";
	}

// This function clears the results of the search
function FUNclearsearch()
	{
	var temp = "";
	for (i=1; i<161; i++)
		{
		temp = "temp" + i;
		parent.document.all[temp].value = "No";
		}
	}

// This fucntion will show all active properties in the results page
function FUNallproperties()
	{
	FUNclearsearch();
	var temp = "";
	for (i=1; i<161; i++)
		{
		temp = "temp" + i;
		if (proparray[i][56] == "Yes")
			{
			parent.document.all[temp].value = "Yes";
			}
		}
	parent.content.location.href = "results_all.html";
	}

function FUNbedrooms()
	{
	FUNclearsearch();
	var temp = "";
	for (i=1; i<161; i++)
		{
		temp = "temp" + i;
		if (proparray[i][56] == "Yes")
			{
			parent.document.all[temp].value = "Yes";
			}
		}
	parent.content.location.href = "results_bedrooms.html";
	}
	
var plotselect = 0;
var k = "";
var sleeps = "sleeps";          //number of bedrooms
var surf = "surf";              //internet access
var play = "play";              //games room
var nosey = "nosey";            //rear privacy
var relax = "relax";            //spa or hot tub
var disabled = "disabled";      //diabled access
var themedkids = "themedkids";  //themed kids bedrooms
var freephone = "freephone";    //free telephone calls
var babies = "babies";          //baby facilities
var largetv = "largetv";        //large television
var welcome = "welcome";        //grocery welcome pack
var smoke = "smoke";            //smoking allowed
var animals = "animals";        //pets allowed
var sofabed = "sofabed";        //sofa beds
var rollbed = "rollbed";        //roll out beds
var microsoft = "microsoft";    //microsoft xbox
var sony = "sony";    		    //sony playstation
var nintendo = "nintendo";      //nintendo wii
var dvd = "dvd";   			    //dvd player
var cd = "cd";                  //cd player
var wifi = "wifi";            //wireless internet
var bbq = "bbq";        		//bar-be-que
var lotstv = "lotstv";          //tv in each room
var footy = "footy";   	        //premier league soccer channel

function FUNsleepsa(k)
	{
	if(k == "3"){parent.document.all[sleeps].value = "3";}
	else if(k == "4"){parent.document.all[sleeps].value = "4";}
	else if(k == "5"){parent.document.all[sleeps].value = "5";}
	}

function FUNsleeps(k)
	{
	if(k == "3"){parent.document.all[sleeps].value = "3";}
	else if(k == "4"){parent.document.all[sleeps].value = "4";}
	else if(k == "5"){parent.document.all[sleeps].value = "5";}
	}

function FUNsurf()
	{
	if(document.all[surf].checked){parent.document.all[surf].value = "Yes";}
	else{parent.document.all[surf].value = "No";}
	}

function FUNplay()
	{
	if(document.all[play].checked){parent.document.all[play].value = "Yes";}
	else{parent.document.all[play].value = "No";}
	}

function FUNnosey()
	{
	if(document.all[nosey].checked){parent.document.all[nosey].value = "Yes";}
	else{parent.document.all[nosey].value = "No";}
	}

function FUNrelax()
	{
	if(document.all[relax].checked){parent.document.all[relax].value = "Yes";}
	else{parent.document.all[relax].value = "No";}
	}

function FUNdisabled()
	{
	if(document.all[disabled].checked){parent.document.all[disabled].value = "Yes";}
	else{parent.document.all[disabled].value = "No";}
	}

function FUNthemedkids()
	{
	if(document.all[themedkids].checked){parent.document.all[themedkids].value = "Yes";}
	else{parent.document.all[themedkids].value = "No";}
	}

function FUNfreephone()
	{
	if(document.all[freephone].checked){parent.document.all[freephone].value = "Yes";}
	else{parent.document.all[freephone].value = "No";}
	}

function FUNbabies()
	{
	if(document.all[babies].checked){parent.document.all[babies].value = "Yes";}
	else{parent.document.all[babies].value = "No";}
	}

function FUNlargetv()
	{
	if(document.all[largetv].checked){parent.document.all[largetv].value = "Yes";}
	else{parent.document.all[largetv].value = "No";}
	}

function FUNwelcome()
	{
	if(document.all[welcome].checked){parent.document.all[welcome].value = "Yes";}
	else{parent.document.all[welcome].value = "No";}
	}

function FUNsmoke()
	{
	if(document.all[smoke].checked){parent.document.all[smoke].value = "Yes";}
	else{parent.document.all[smoke].value = "No";}
	}
	
function FUNanimals()
	{
	if(document.all[animals].checked){parent.document.all[animals].value = "Yes";}
	else{parent.document.all[animals].value = "No";}
	}

function FUNsofabed()
	{
	if(document.all[sofabed].checked){parent.document.all[sofabed].value = "Yes";}
	else{parent.document.all[sofabed].value = "No";}
	}

function FUNrollbed()
	{
	if(document.all[rollbed].checked){parent.document.all[rollbed].value = "Yes";}
	else{parent.document.all[rollbed].value = "No";}
	}

function FUNmicrosoft()
	{
	if(document.all[microsoft].checked){parent.document.all[microsoft].value = "Yes";}
	else{parent.document.all[microsoft].value = "No";}
	}

function FUNsony()
	{
	if(document.all[sony].checked){parent.document.all[sony].value = "Yes";}
	else{parent.document.all[sony].value = "No";}
	}

function FUNnintendo()
	{
	if(document.all[nintendo].checked){parent.document.all[nintendo].value = "Yes";}
	else{parent.document.all[nintendo].value = "No";}
	}

function FUNdvd()
	{
	if(document.all[dvd].checked){parent.document.all[dvd].value = "Yes";}
	else{parent.document.all[dvd].value = "No";}
	}

function FUNcd()
	{
	if(document.all[cd].checked){parent.document.all[cd].value = "Yes";}
	else{parent.document.all[cd].value = "No";}
	}

function FUNwifi()
	{
	if(document.all[wifi].checked){parent.document.all[wifi].value = "Yes";}
	else{parent.document.all[wifi].value = "No";}
	}

function FUNbbq()
	{
	if(document.all[bbq].checked){parent.document.all[bbq].value = "Yes";}
	else{parent.document.all[bbq].value = "No";}
	}

function FUNlotstv()
	{
	if(document.all[lotstv].checked){parent.document.all[lotstv].value = "Yes";}
	else{parent.document.all[lotstv].value = "No";}
	}

function FUNfooty()
	{
	if(document.all[footy].checked){parent.document.all[footy].value = "Yes";}
	else{parent.document.all[footy].value = "No";}
	}

function FUNbigsearch()
	{
	FUNclearsearch();
	var temp = "";
	var tempbabies = "";

	for (i=1; i<161; i++)
		{
		temp = "temp" + i;
		if ((proparray[i][32] || proparray[i][33] || proparray[i][34] || proparray[i][35]) == "Yes")
			{
			tempbabies = "Yes";
			}
		else
			{
			tempbabies = "No";
			}

// is the plot searchable
		if (proparray[i][56] == "Yes")
			{
			parent.document.all[temp].value = "Yes";
			}

// minimum number of bedrooms
		if ((proparray[i][17] >= parent.document.all[sleeps].value) && (parent.document.all[temp].value == "Yes"))
			{
			parent.document.all[temp].value = "Yes";
			}
		else
			{
			parent.document.all[temp].value = "No";
			}

// is there internet
		if (parent.document.all[surf].value == "Yes")
			{
			if ((proparray[i][37] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a games room
		if (parent.document.all[play].value == "Yes")
			{
			if ((proparray[i][26] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there rear privacy
		if (parent.document.all[nosey].value =="Yes")
			{
			if ((proparray[i][50] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a spa
		if (parent.document.all[relax].value == "Yes")
			{
			if ((proparray[i][25] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there diabled access
		if (parent.document.all[disabled].value == "Yes")
			{
			if ((proparray[i][20] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there themed kids rooms
		if (parent.document.all[themedkids].value == "Yes")
			{
			if ((proparray[i][48] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there free telephone calls
		if (parent.document.all[freephone].value == "Yes")
			{
			if ((proparray[i][51] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there baby facilities
		if (parent.document.all[babies].value == "Yes")
			{
			if ((tempbabies == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a large screen tv
		if (parent.document.all[largetv].value == "Yes")
			{
			if ((proparray[i][47] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a welcome pack
		if (parent.document.all[welcome].value == "Yes")
			{
			if ((proparray[i][49] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is smoking allowed
		if (parent.document.all[smoke].value == "Yes")
			{
			if ((proparray[i][21] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// are pets allowed
		if (parent.document.all[animals].value == "Yes")
			{
			if ((proparray[i][22] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a sofa bed
		if (parent.document.all[sofabed].value == "Yes")
			{
			if ((proparray[i][44] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a roll out bed
		if (parent.document.all[rollbed].value == "Yes")
			{
			if ((proparray[i][36] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there an xbox
		if (parent.document.all[microsoft].value == "Yes")
			{
			if ((proparray[i][38] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a playstation
		if (parent.document.all[sony].value == "Yes")
			{
			if ((proparray[i][39] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a nintendo
		if (parent.document.all[nintendo].value == "Yes")
			{
			if ((proparray[i][40] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a dvd player
		if (parent.document.all[dvd].value == "Yes")
			{
			if ((proparray[i][41] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a cd player
		if (parent.document.all[cd].value == "Yes")
			{
			if ((proparray[i][43] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there wireless internet
		if (parent.document.all[wifi].value == "Yes")
			{
			if ((proparray[i][42] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a bbq
		if (parent.document.all[bbq].value == "Yes")
			{
			if ((proparray[i][45] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there a tv in each room
		if (parent.document.all[lotstv].value == "Yes")
			{
			if ((proparray[i][47] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}

// is there premier league football
		if (parent.document.all[footy].value == "Yes")
			{
			if ((proparray[i][53] == "Yes") && (parent.document.all[temp].value == "Yes"))
				{
				parent.document.all[temp].value = "Yes";
				}
			else
				{
				parent.document.all[temp].value = "No";
				}
			}
		}
	parent.content.location.href = "results_bigsearch.html";
	}

// The Property Array Information
proparray = new Array(161);

proparray[1] = new Array("1",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[2] = new Array("2",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[3] = new Array("3",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[4] = new Array("4",							//0 Property ID
						 "Allison",					//1 First Name
						 "Cannon",						//2 Surname
						 "214 Summerhouse Drive",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Dartford",						//5 Town
						 "Kent",					//6 County or State
						 "DA2 7PB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01322554214",					//9 Daytime Phone Number
						 "01322554214",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07789307732",					//12 Mobile or Cell Number
						 "allison.cannon@btinternet.com",						//13 Email Address
						 "1059 Tuscan Hills Boulevard",				//14 Villa Address
						 "Orchid",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.homeawayconnect.com/calendar.aspx?propertyid=75576",						//23 Availability Calendar Link
						 "http://www.villacanbro.com",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our beautiful mediterranean style villa sleeps up to 12 people has 5 bedrooms, 4 bathrooms, screened pool & spa, well equipped games room with 7ft pool table, table foosball & air hockey, PS2,dvd player and TV's in all bedrooms. It provides everything you could wish for a brilliant family holiday.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[5] = new Array("5",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[6] = new Array("6",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[7] = new Array("7",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[8] = new Array("8",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[9] = new Array("9",							//0 Property ID
						 "Wendy",					//1 First Name
						 "Edwards",						//2 Surname
						 "Tegla Bach",					//3 Address Line 1
						 "Ruthin Road",					//4 Address Line 2
						 "Llandegla",						//5 Town
						 "Denbighshire",					//6 County or State
						 "LL11 3AB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "Da01978 790252yPhone",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "enquiries@luxuryvillasatdisney.co.uk",						//13 Email Address
						 "1009 Tuscan Hills Boulevard",				//14 Villa Address
						 "Jasmine_4",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://rentors.org/158129",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Well-appointed spacious 4 bed detached villa, heated pool and spa, games room with Pinball, airhockey and more. Internet access. Exceptionally well equipped, 12 minutes from Disney.<br /><br />Tuscan Dream Villa offers its guests some of the best facilities you will find in a vacation home.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[10] = new Array("10",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[11] = new Array("11",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[12] = new Array("12",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[13] = new Array("13",							//0 Property ID
						 "Lynda",					//1 First Name
						 "Cook",						//2 Surname
						 "7 Elmscott Gardens",					//3 Address Line 1
						 "Winchmore Hill",					//4 Address Line 2
						 "London",						//5 Town
						 "London",					//6 County or State
						 "N21 2BP",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "020 8360 5112",					//9 Daytime Phone Number
						 "020 8360 5112",					//10 Evening Phone Number
						 "020 8360 5112",							//11 Fax Number
						 "07949033869",					//12 Mobile or Cell Number
						 "ashemagnolia@tiscali.co.uk",						//13 Email Address
						 "947 Tuscan Hills Blvd",				//14 Villa Address
						 "Hibiscus_5",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our larger than average (3500 sq ft) luxurious brand new villa is built over two floors and has 5 bedrooms (2 king en-suite, 1 queen, & 2 twin bedded rooms),4&1/2 bathrooms, pool & spa, three indoor seating areas & a games room.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[14] = new Array("14",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[15] = new Array("15",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[16] = new Array("16",							//0 Property ID
						 "Bobby",					//1 First Name
						 "Sangha",						//2 Surname
						 "23 Burnfoot Avenue",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Fulham",						//5 Town
						 "London",					//6 County or State
						 "SW6 5EB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07790903301",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07790903301",					//12 Mobile or Cell Number
						 "bobbysangha74@aol.com",						//13 Email Address
						 "917 Tuscan Hills Boulevard",				//14 Villa Address
						 "Jasmine_4",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "*** JASMINES PALACE ***<br /><br />Stunning New Villa with themed bedrooms, Games Room, Private Pool and Spa see Virtual tour. Make your Disney Trip an unforgetable one...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[17] = new Array("17",							//0 Property ID
						 "Laura",					//1 First Name
						 "Crumb",						//2 Surname
						 "3 Turretbank Place",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Crieff",						//5 Town
						 "Perthshire",					//6 County or State
						 "PH7 4LS",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01764 655930",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "0781 007 7934",					//12 Mobile or Cell Number
						 "crambs23@msn.com",						//13 Email Address
						 "907 Tuscan Hills Blvd",				//14 Villa Address
						 "Orchid",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "Yes",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our superb luxury villa is situated on a large corner plot, is air conditioned throughout and has the added benefit of ceiling fans in main rooms. This is the ideal home for 2 large or even 3 smaller families travelling together, or for extended family groups. For guests' additional comfort, this is a non-smoking home. Pets are not permitted.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[18] = new Array("18",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[19] = new Array("19",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[20] = new Array("20",							//0 Property ID
						 "Sean",						//1 First Name
						 "McDougall",					//2 Surname
						 "The Barn",					//3 Address Line 1
						 "Roose Farm Lane",				//4 Address Line 3
						 "Barrow in Furness",			//5 Town
						 "Cumbria",						//6 County or State
						 "LA13 0HB",					//7 Post or Zip Code
						 "UK",							//8 Country
						 "01229 870762",				//9 Daytime Phone Number
						 "01229 836900",				//10 Evening Phone Number
						 "01229 870730",				//11 Fax Number
						 "07768 798341",				//12 Mobile or Cell Number
						 "seanmcdougall@thinkpositive.co.uk",	//13 Email Address
						 "845 Tuscan Hills Blvd",				//14 Villa Address
						 "Orchid",						//15 Villa Name
						 "Detached",					//16 Property Type
						 "5",							//17 Number of Bedrooms
						 "4",							//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.rentors.org/calendar.aspx?propertyid=106170",						//23 Availability Calendar Link
						 "http://www.vr360.net/oxford/homes/845thb",									//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "Yes",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "Yes",							//53 Premier League Soccer Channel
						 "A stunning 5 bed 4 bath Mediterranean-Style villa with terracotta roof, palm trees to the front and very private 26\' pool with spa to the rear. Inside is everything you could possibly need to ensure your comfort and enjoyment including a games room, huge 56\" TV, PS2, DVD player, internet &amp; much more...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");						//57 Include in Random Property

proparray[21] = new Array("21",							//0 Property ID
						 "Peter and Celia",					//1 First Name
						 "Hayward",						//2 Surname
						 "1 Kingston Avenue",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Blackpool",						//5 Town
						 "Lancashire",					//6 County or State
						 "FY4 2QB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01253 314068",					//9 Daytime Phone Number
						 "01253 314068",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07763 08562",					//12 Mobile or Cell Number
						 "villas_usa@yahoo.co.uk",						//13 Email Address
						 "835 Tuscan Hills Boulevard",				//14 Villa Address
						 "Jasmine_4",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.homeawayconnect.com/calendar.aspx?propertyid=214851",						//23 Availability Calendar Link
						 "http://www.vr360.net/homes/835thb",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "Yes",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "4 Bed Detached Villa Own Heated Pool Spa Not Overlooked at Back 2 Master En-suite Beds + 1 Double & 1Twin Bedroom Sharing a 3rd Full Bathroom TV&DVD all Beds. XBox, Family Rm Has TV,DVD&Stereo Free Nat+Int Tel Calls Internet Access Games Room with Pool Table, Basketball, Air Hockey, Foosball & Darts.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[22] = new Array("22",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[23] = new Array("23",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[24] = new Array("24",							//0 Property ID
						 "David and Andrea",					//1 First Name
						 "Grinham",						//2 Surname
						 "34 Abingdon Road",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Sandhurst",						//5 Town
						 "Berkshire",					//6 County or State
						 "GU47 9RN",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01344 779698",					//9 Daytime Phone Number
						 "01344 779698",					//10 Evening Phone Number
						 "01344 761144",							//11 Fax Number
						 "07778 345738",					//12 Mobile or Cell Number
						 "dj-experience@lineone.net",						//13 Email Address
						 "805 Tuscan Hills Boulevard",				//14 Villa Address
						 "Hibiscus_5",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.rentalsystems.com/advert_price.asp?ref=29244&rag=33158M&rcam=ownerweb",						//23 Availability Calendar Link
						 "http://www.sunshinevillaholidaysorlando.com/villa-tour/index.html",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "Yes",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "Yes",							//53 Premier League Soccer Channel
						 "Privately Owned, Deluxe 2 storey Detached Villa. Beautifully furnished throughout - 5 Double/Twin Bedrooms, 4. Bathrooms, Private pool/Spa and extended south facing sun deck. Well equipped Games Room.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[25] = new Array("25",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[26] = new Array("26",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[27] = new Array("27",							//0 Property ID
						 "Jags",					//1 First Name
						 "Sanghera",						//2 Surname
						 "41 Argyll Street",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Southall",						//5 Town
						 "Middlesex",					//6 County or State
						 "UB1 3AT",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "020 8574 8857",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "020 867 9760",							//11 Fax Number
						 "07967 467 655",					//12 Mobile or Cell Number
						 "jagjit.sanghera@btinternet.com",						//13 Email Address
						 "753 Tuscan Hills Blvd",				//14 Villa Address
						 "Hibiscus_5",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "http://www.vr360.net/oxford/homes/753thb",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Five Bedrooms, Four Bathrooms, Prime Position on Resort, Personally Furnished to a Very High Spec, Comfotably Sleeps 10 (no sofa beds), Air Conditioning & Ceiling Fans, Pool Area very Private (not over looked), Large Pool & Spa with Lights and Water Spray Feature, Pool Heat Available, Games Room.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[28] = new Array("28",							//0 Property ID
						 "Maria Luisa",					//1 First Name
						 "Aguiar",						//2 Surname
						 "Suite 320",					//3 Address Line 1
						 "48 Par La Ville Road",					//4 Address Line 2
						 "Hamilton",						//5 Town
						 "",					//6 County or State
						 "HM11",					//7 Post or Zip Code
						 "Bermuda",						//8 Country
						 "441 292 6245",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "441 293 5277",							//11 Fax Number
						 "441 537 6354",					//12 Mobile or Cell Number
						 "tuscanhillsblvd@yahoo.com",						//13 Email Address
						 "743 Tuscan Hills Blvd",				//14 Villa Address
						 "Orchid",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.homeandawayconnect.com/calendar.aspx?propertyid=210084",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "Yes",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "Yes",							//53 Premier League Soccer Channel
						 "Welcome to our Family Vacation Home - \"Villa Bermudiana\" - the perfect family retreat for your Orlando vacation.<br /><br />We have worked very hard to ensure our home is fully equipped so that your stay is as safe, enjoyable and comfortable as our own.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[29] = new Array("29",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[30] = new Array("30",							//0 Property ID
						 "Tim",					//1 First Name
						 "Wright",						//2 Surname
						 "222 Ballywalter Road",					//3 Address Line 1
						 "Millisle",					//4 Address Line 2
						 "Newtownlands",						//5 Town
						 "Down",					//6 County or State
						 "BT22 2LY",					//7 Post or Zip Code
						 "Northern Ireland",						//8 Country
						 "07906576461",					//9 Daytime Phone Number
						 "07906576461",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07906576461",					//12 Mobile or Cell Number
						 "twagencies@hotmail.com",						//13 Email Address
						 "723 Tuscanhills Blvd",				//14 Villa Address
						 "Hibiscus_5",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "http://orlandosnumber1villa.com",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "Yes",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "Yes",							//38 XBox
						 "Yes",							//39 Playstation
						 "Yes",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "Yes",							//53 Premier League Soccer Channel
						 "OUR 5 BEDROOM LUXURY VILLA COMES WITH MANY EXTRAS:- LARGE 30ft*15ft SOUTH FACING POOL + SPA (NOT OVERLOOKED) WITH EXTENDED DECK. GAMES ROOM, APPLE COMPUTER WITH FREE WIRELESS INTERNET PLUS X-BOX 360, PLAYSTATION 3 AND NINTENDO WII. FREE PHONE CALLS, PREMIERSHIP FOOTBALL AND PLASMA TVS",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[31] = new Array("31",							//0 Property ID
						 "Jan",					//1 First Name
						 "Krir",						//2 Surname
						 "76 Bedford Place",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Southampton",						//5 Town
						 "",					//6 County or State
						 "SO15 2DF",					//7 Post or Zip Code
						 "United Kingdom",						//8 Country
						 "02380 330090",					//9 Daytime Phone Number
						 "02380 640850",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "jan@krir.wanadoo.co.uk",						//13 Email Address
						 "713 Tuscan Hills Boulevard",				//14 Villa Address
						 "Hibiscus_4",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://disneyforthediscerning.com",						//23 Availability Calendar Link
						 "http://domain241723.sites.fasthosts.com/virtualtours/Krir821/bb/index.htm",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "5* Contemporary Executive Plus spacious Villa for the more discerning guest with secluded south facing pool and spa. Individually furnished to very high standard. Full of original contemporary paintings. A peaceful haven away a few minutes from Disney World. Fantastic car themed games room. Lanai.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[32] = new Array("32",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[33] = new Array("33",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[34] = new Array("34",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[35] = new Array("35",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[36] = new Array("36",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[37] = new Array("37",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[38] = new Array("38",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[39] = new Array("39",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[40] = new Array("40",							//0 Property ID
						 "Rowena",					//1 First Name
						 "Reedman",						//2 Surname
						 "Brushwood",					//3 Address Line 1
						 "Frilford Heath",					//4 Address Line 2
						 "Abingdon",						//5 Town
						 "Oxfordshire",					//6 County or State
						 "OX13 5QG",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01865 390223",					//9 Daytime Phone Number
						 "01865 390223",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "rowena_reedman@btinternet.com",						//13 Email Address
						 "601 Tuscan Hills Boulevard",				//14 Villa Address
						 "Jasmine_4",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "For a perfect Florida holiday try our luxury 4 bed 3 bath detached villa, situated on a corner plot with a private pool facing woodland and not over-looked by other villas. 2 master suites, 2 twin rooms. Games room, Playstation2, cableTV, DVD. Heated pool/spa, extended patio area. Find out more...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[41] = new Array("41",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[42] = new Array("42",							//0 Property ID
						 "Donna",					//1 First Name
						 "Jordan",						//2 Surname
						 "91 Hartley Road",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Birmingham",						//5 Town
						 "Warwickshire",					//6 County or State
						 "B44 0RD",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07969 357977",					//9 Daytime Phone Number
						 "01212 435962",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07969 357977",					//12 Mobile or Cell Number
						 "",						//13 Email Address
						 "610 Tuscan Hills Boulevard",				//14 Villa Address
						 "Azalea",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.aluxuriousdisneyvilla.com/availability.htm",						//23 Availability Calendar Link
						 "http://www.aluxuriousdisneyvilla.com/virtualtour.htm",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Luxurious 4 bedroomed villa, furnished to the highest of standard, sleeps up to 10 people. Offering 2 en-suites and a family bathroom, well equipped games room and South facing luxury screened pool with spa which can be fully heated. Full Cable TV, Playstation DVD, CD & VHS",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[43] = new Array("43",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[44] = new Array("44",							//0 Property ID
						 "Shirley",					//1 First Name
						 "Bentley",						//2 Surname
						 "The Corner House",					//3 Address Line 1
						 "Bealeys Close",					//4 Address Line 2
						 "Bloxwich",						//5 Town
						 "Walsall",					//6 County or State
						 "WS3 2JP",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "01922 401895",					//9 Daytime Phone Number
						 "01922 401895",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07928 033158",					//12 Mobile or Cell Number
						 "betley.rosemary@virgin.net",						//13 Email Address
						 "630 Tuscan Hills Boulevard",				//14 Villa Address
						 "Azalea",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our 4 bedroom Villa on Tuscan Hills has all you need for a relaxing holiday. With pool, spa, games room and full security throughout. We also provide free WIFI access and International calls for your stay. Only 12 minutes from Disney with shops, supermarkets and restaurants closeby.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[45] = new Array("45",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[46] = new Array("46",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[47] = new Array("47",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[48] = new Array("48",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[49] = new Array("49",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[50] = new Array("50",							//0 Property ID
						 "Julie",					//1 First Name
						 "Clark",						//2 Surname
						 "7 Guildford Drive",					//3 Address Line 1
						 "Chandlers Ford",					//4 Address Line 2
						 "Eastleigh",						//5 Town
						 "Hants",					//6 County or State
						 "SO53 3PR",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "02380 273910",					//9 Daytime Phone Number
						 "02380 273910",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07743 086741",					//12 Mobile or Cell Number
						 "g10jmc@hotmail.com",						//13 Email Address
						 "712 Tuscan Hills Blvd",				//14 Villa Address
						 "Hibiscus_5",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our luxurious beautifully furnished 5 bedroom executive villa sleeps 10+2 (2 masters with en-suites, 3 twin and 1 sofabed in the lounge). There are 4.5 bathrooms. Screened pool with spa and extended deck and upgraded furniture for al-fresco dining. Cable TV throughout: lounge, loft and both masters.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[51] = new Array("51",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[52] = new Array("52",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[53] = new Array("53",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[54] = new Array("54",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[55] = new Array("55",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[56] = new Array("56",							//0 Property ID
						 "Julie",					//1 First Name
						 "Cross",						//2 Surname
						 "15 Calle Pardeleria",					//3 Address Line 1
						 "Los Majones",					//4 Address Line 2
						 "Lanzarote",						//5 Town
						 "Canary Islands",					//6 County or State
						 "Tias 35510",					//7 Post or Zip Code
						 "Spain",						//8 Country
						 "0034928510490",					//9 Daytime Phone Number
						 "0034676824870",					//10 Evening Phone Number
						 "0034928515229",							//11 Fax Number
						 "0034676824870",					//12 Mobile or Cell Number
						 "villasdisney@yahoo.com",						//13 Email Address
						 "906 Tuscan Hills Blvd",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Disney Villa has an elegant and luxurious feel, yet welcoming and homely that makes it perfect for a vacation in Florida. Our spacious villa has been superbly furnished to a very high standard throughout. The Pool includes a covered Lanai with ceiling fan should you prefer to sit in the shade. There is a safety fence if required.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property


proparray[57] = new Array("57",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[58] = new Array("58",							//0 Property ID
						 "Bobby",					//1 First Name
						 "Sangha",						//2 Surname
						 "23 Burnfoot Avenue",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Fulham",						//5 Town
						 "London",					//6 County or State
						 "SW6 5EB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07790903301",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07790903301",					//12 Mobile or Cell Number
						 "bobbysangh74@aol.com",						//13 Email Address
						 "926 Tuscanhills Boulevard",				//14 Villa Address
						 "Jasmine_4",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "http://www.vr360.net/homes/926thb",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "*** MAGNUM VILLA ***<br /><br />An absolutely Stunning New Villa with a Tropical Theme, this villa features an amazing kids Jungle Themed bedroom, a Formula1 bedroom and a Moulin Rouge Boudoir...there is a themed Games Room, South facing pool and a Spa too See Virtual Tour...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[59] = new Array("59",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[60] = new Array("60",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[61] = new Array("61",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[62] = new Array("62",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[63] = new Array("63",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[64] = new Array("64",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[65] = new Array("65",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[66] = new Array("66",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[67] = new Array("67",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[68] = new Array("68",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[69] = new Array("69",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[70] = new Array("70",							//0 Property ID
						 "Julie",					//1 First Name
						 "Preen",						//2 Surname
						 "4 School Close",					//3 Address Line 1
						 "Stoke Lodge",					//4 Address Line 2
						 "Bristol",						//5 Town
						 "South Gloucs",					//6 County or State
						 "BS34 6DW",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01454 850823",					//9 Daytime Phone Number
						 "01454 850823",					//10 Evening Phone Number
						 "01454 850823",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "jpusa66@yahoo.co.uk",						//13 Email Address
						 "1078 Tuscan Hills Boulevard",				//14 Villa Address
						 "Orchid",					//15 Villa Name
						 "Detached",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "4",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "Yes",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our Orchid Villa is a 5 Bedroom/4 Bathroom Luxury villa on the gated resort Of Tuscan Hills.<br />We have a South Facing Pool with jacuzzi, Games Room, Two Master Suites, 1 Queen Size Suite and 2 Themed Kids Rooms.<br />If you are looking to relax in the Florida Sunshine, our villa is the place to stay!",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[71] = new Array("1",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[72] = new Array("72",							//0 Property ID
						 "David",					//1 First Name
						 "Lee",						//2 Surname
						 "64 Barrick Hill",					//3 Address Line 1
						 "Romiley",					//4 Address Line 2
						 "Stockport",						//5 Town
						 "Cheshire",					//6 County or State
						 "SK6 4BA",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07778 393346",					//9 Daytime Phone Number
						 "0161 430 4915",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07778 393346",					//12 Mobile or Cell Number
						 "david.lee50@ntlworld.com",						//13 Email Address
						 "944 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.homeawayconnect.com/calendar.cfm?pid=159022",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Luxury 4 bedroom 3.5 bathroom villa with private swimming pool and spa that is not overlooked by other properties.<br /><br />Bed 1: King Size bed. Bed 2: Queen size bed. Both with en-suite facilities. Beds 3 & 4: twin beds with shared bathroom facilities. High chair also available at no additional cost.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[73] = new Array("73",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[74] = new Array("74",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[75] = new Array("75",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[76] = new Array("76",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[77] = new Array("77",							//0 Property ID
						 "Kerry",					//1 First Name
						 "Voke",						//2 Surname
						 "1 Kensington Place",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Newport",						//5 Town
						 "",					//6 County or State
						 "NP19 8GL",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01633 769768",					//9 Daytime Phone Number
						 "01633 272564",					//10 Evening Phone Number
						 "01633 769768",							//11 Fax Number
						 "07866 044547",					//12 Mobile or Cell Number
						 "kerryv@ntlworld.com",						//13 Email Address
						 "852 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.rentors.org/calendar.aspx?propertyid=264190",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "Yes",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Set in a pretty courtyard, luxurious Tuscan Palm Villa provides easy access on one level.  3 bedrooms (Master with King bed, 1 Queen, 1 Twin) 2 bathrooms, pool & spa, spacious living area, upgraded throughout, games room, air con, ceiling fans & cable TV in all rooms, internet access & games console.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[78] = new Array("78",							//0 Property ID
						 "Martin & kerry",					//1 First Name
						 "Hodges",						//2 Surname
						 "7 Chasewood Court",					//3 Address Line 1
						 "Hale Lane",					//4 Address Line 2
						 "Mill Lane",						//5 Town
						 "London",					//6 County or State
						 "NW7 3RX",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0044 7811170085",					//9 Daytime Phone Number
						 "0044 7811170085",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "0044 7811170085",					//12 Mobile or Cell Number
						 "kerriepoulton@hotmail.com",						//13 Email Address
						 "842 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "A luxury 4 bedroom 3.5 bathroom villa with private swimming pool and spa with access to the onsite Club House.<br /><br />One king size bedroom with ensuite facilities and one room featuring a queen size bed along with two further twin bedrooms.  Plus one sofa bed which opens up into a queen size bed.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[79] = new Array("79",							//0 Property ID
						 "Ian",					//1 First Name
						 "Thomson",						//2 Surname
						 "14 Cairnhill Road",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Fraserburgh",						//5 Town
						 "",					//6 County or State
						 "AB13 9SS",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07801 635256",					//9 Daytime Phone Number
						 "01346 517031",					//10 Evening Phone Number
						 "01346 517031",							//11 Fax Number
						 "07801 635256",					//12 Mobile or Cell Number
						 "info@tuscan-manor.com",						//13 Email Address
						 "832 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "Yes",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "This villa has upgrades throughout and comes complete with Flat Screen TV in the Lounge which is perfect for watching all your favourites on cable with the family. There are also TVs in every bedroom so that everyone can watch what they want making sure that everyone is happy, plus much more...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[80] = new Array("80",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[81] = new Array("81",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[82] = new Array("82",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[83] = new Array("83",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[84] = new Array("84",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[85] = new Array("85",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[86] = new Array("86",							//0 Property ID
						 "Marlon",					//1 First Name
						 "Groves",						//2 Surname
						 "49 Ladyhill View",					//3 Address Line 1
						 "Ellenbrook",					//4 Address Line 2
						 "Worsley",						//5 Town
						 "Lancashire",					//6 County or State
						 "M28 7LH",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "07889 861519",					//9 Daytime Phone Number
						 "0161 790 4628",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07889 861519",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "720 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "http://www.vr360homes.co.uk/virtualtours/groves797/flashbb/index.htm",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "Yes",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Beautiful 2 storey 5 bedroom courtyard villa with private screened pool and Spa. Features include a games room a large living area overlooking the pool, a fully fitted kitchen with breakfast bar, cable TV, Playstation, air conditioning and heating throughout.All 5 bedrooms have their own televsion.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[87] = new Array("87",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[88] = new Array("88",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[89] = new Array("89",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[90] = new Array("90",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[91] = new Array("91",							//0 Property ID
						 "Oonagh",					//1 First Name
						 "Devenney",						//2 Surname
						 "53 Gleneagles",					//3 Address Line 1
						 "Culmore Road",					//4 Address Line 2
						 "Londonderry",						//5 Town
						 "",					//6 County or State
						 "BT48 7TE",					//7 Post or Zip Code
						 "Northern Ireland",						//8 Country
						 "02871352369",					//9 Daytime Phone Number
						 "02871352369",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "tuscandreamvilla@yahoo.co.uk",						//13 Email Address
						 "638 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "No",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "A 5-bed villa with South facing pool and spa the villa is furnished to a 5 star standard! Sleeping up to 12!<br /><br />This villa enables two large or three small families to holiday together... it makes sense to share the cost... what are you waiting for contact me now...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[92] = new Array("92",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[93] = new Array("93",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[94] = new Array("94",							//0 Property ID
						 "Edward",					//1 First Name
						 "Creasey",						//2 Surname
						 "9 The Avenue",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Tadworth",						//5 Town
						 "Surrey",					//6 County or State
						 "KT20 5AB",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "020 8390 3531",					//9 Daytime Phone Number
						 "01737 279642",					//10 Evening Phone Number
						 "020 8399 1013",							//11 Fax Number
						 "07720 427699",					//12 Mobile or Cell Number
						 "edcreasey@yahoo.co.uk",						//13 Email Address
						 "608 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://wwwvr360floridavillas.co.uk/propertydets.asp?id=711",						//23 Availability Calendar Link
						 "http://wwwvr360floridavillas.co.uk/propertydets.asp?id=711",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our 3 Bed Courtyard Villa with private south east facing pool is furnished to a high standard all on one level. Beautifully landscaped, with full access to all Club House Facilities with internet,gym etc. Just 10 minutes drive to the Disney Maingate - Quality at the lowest price.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[95] = new Array("95",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[96] = new Array("96",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[97] = new Array("97",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[98] = new Array("98",							//0 Property ID
						 "Carl",					//1 First Name
						 "James",						//2 Surname
						 "Higher House",					//3 Address Line 1
						 "Lacon Street",					//4 Address Line 2
						 "Prees",						//5 Town
						 "Shropshire",					//6 County or State
						 "SY13 2EP",					//7 Post or Zip Code
						 "United Kingdom",						//8 Country
						 "01948841094",					//9 Daytime Phone Number
						 "01948841094",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07863348595",					//12 Mobile or Cell Number
						 "angela_m_james@hotmail.com",						//13 Email Address
						 "526 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.floridavipvacations.com/vt1.php?id=100&web=MickeyandMinniesDreamHome.com",						//23 Availability Calendar Link
						 "http://www.mickeyandminniesdreamhome.com/vt_main.htm",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Our stunning villa is set on a large corner plot and has upgrades throughout. Both master en-suites come with king size beds + 3 twin rooms, Private screened pool and spa with extended outside decking. Games room, WiFi Internet throughout, Free UK calls, TVs in all bedrooms, DVD and so much more...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[99] = new Array("99",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[100] = new Array("100",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[101] = new Array("101",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[102] = new Array("102",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[103] = new Array("103",							//0 Property ID
						 "Garry & Ann",					//1 First Name
						 "Ronson",						//2 Surname
						 "19 Maidenlands Crescent",					//3 Address Line 1
						 "-",					//4 Address Line 2
						 "Dalton in Furness",						//5 Town
						 "Cumbria",					//6 County or State
						 "LA15 8UD",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01229 466961",					//9 Daytime Phone Number
						 "01229 466961",					//10 Evening Phone Number
						 "01229 466961",							//11 Fax Number
						 "07968 749962",					//12 Mobile or Cell Number
						 "garry@closesttothemagic.wanadoo.co.uk",						//13 Email Address
						 "629 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.rentors.org/calendar.aspx?propertyid=106171",						//23 Availability Calendar Link
						 "http://www.vr360.net/oxford/homes/629bd",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "Yes",							//53 Premier League Soccer Channel
						 "Superb five bedroom, three and a half bath bath villa in the prestigious new Mediterranean style Tuscan Hills gated community, 12 minutes from Disney. This 2228 square foot, beautifully furnished and equipped villa sleeps up to 12 and offers games room, extended pool deck & spa with no rear neighbours & much more.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[104] = new Array("104",							//0 Property ID
						 "Matthew",					//1 First Name
						 "Exton",						//2 Surname
						 "18 Keynsham Road",					//3 Address Line 1
						 "Heath",					//4 Address Line 2
						 "Cardiff",						//5 Town
						 "South Glamorgan",					//6 County or State
						 "CF14 1TS",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "029 20626016",					//9 Daytime Phone Number
						 "029 20626016",					//10 Evening Phone Number
						 "029 20612927",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "matthew@imperialfinance.co.uk",						//13 Email Address
						 "639 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "5 bedroom courtyard villa with screened pool and raised spa. Dining and living room overlooking the pool. Playstation 2 console plus games, large range of family DVDs and games supplied. Fully fitted kitchen with breakfast bar, cable TV, air conditioning and heating throughout.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[105] = new Array("105",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[106] = new Array("106",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[107] = new Array("107",							//0 Property ID
						 "Barry",					//1 First Name
						 "May",						//2 Surname
						 "20 Ashmead Close",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Chatham",						//5 Town
						 "Kent",					//6 County or State
						 "ME5 8NY",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01634 862378",					//9 Daytime Phone Number
						 "01634 862378",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "bm006d7854@blueyonder.co.uk",						//13 Email Address
						 "701 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Fabulous Mediterranean style three bed courtyard villa, with a  private pool, games room and free internet,  well furnished, and equipped for  everything you could possible need to help you enjoy  your vacation. The villa is very well located for all the theme parks.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[108] = new Array("108",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[109] = new Array("109",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[110] = new Array("110",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[111] = new Array("111",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[112] = new Array("112",							//0 Property ID
						 "Oonagh",					//1 First Name
						 "Devenney",						//2 Surname
						 "53 Gleneagles",					//3 Address Line 1
						 "Culmore Road",					//4 Address Line 2
						 "Londonderry",						//5 Town
						 "",					//6 County or State
						 "BT48 7TE",					//7 Post or Zip Code
						 "Northern Ireland",						//8 Country
						 "02871 352369",					//9 Daytime Phone Number
						 "02871 352369",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "starvillasdisney@yahoo.co.uk",						//13 Email Address
						 "751 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Fabulous 3 bed villa with private pool and spa plus games room and free internet!! The villa is modern, well furnished and very well equipped for everything you would possibly need on vacation. The villa is very well located just 10 minutes from the gates of Disney World... have you booked yet!",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[113] = new Array("113",							//0 Property ID
						 "Janice",					//1 First Name
						 "Weston",						//2 Surname
						 "Birchwood",					//3 Address Line 1
						 "Tranwell Woods",					//4 Address Line 2
						 "Morpeth",						//5 Town
						 "Northumberland",					//6 County or State
						 "NE61 6AG",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0191 5120096",					//9 Daytime Phone Number
						 "01670 517254",					//10 Evening Phone Number
						 "0191 5847804",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "",						//13 Email Address
						 "803 Brunello",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "9",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Wonderful 3 bed villa with private pool and spa.  Luxury spacious accomodation on one level. Unique Tuscan style decor. Amazing master suite with king sized bed. Disney & Freinds childrens themed rooms with 3 beds.  TV in every room.  For larger parties I can offer 3 villas next to each other.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[114] = new Array("114",							//0 Property ID
						 "Janice",					//1 First Name
						 "Weston",						//2 Surname
						 "Birchwood",					//3 Address Line 1
						 "Tranwell Woods",					//4 Address Line 2
						 "Morpeth",						//5 Town
						 "Northumberland",					//6 County or State
						 "NE61 6AG",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0191 5120096",					//9 Daytime Phone Number
						 "01670 517254",					//10 Evening Phone Number
						 "0191 5847804",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "",						//13 Email Address
						 "813 Brunello",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3",						//18 Number of Bathrooms
						 "11",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "An outstanding new executive style vacation home furnished to an extremely high standard and offering spacious accommodation over 2 floors. Sleeping up to 11 guests plus an infant.<br />Your family will adore the Tuscan style decor and the many amenities on offer to our guests.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[115] = new Array("115",							//0 Property ID
						 "Janice",					//1 First Name
						 "Weston",						//2 Surname
						 "Birchwood",					//3 Address Line 1
						 "Tranwell Woods",					//4 Address Line 2
						 "Morpeth",						//5 Town
						 "Northumberland",					//6 County or State
						 "NE61 6AG",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0191 5120096",					//9 Daytime Phone Number
						 "01670 517254",					//10 Evening Phone Number
						 "0191 5847804",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "",						//13 Email Address
						 "823 Brunello",				//14 Villa Address
						 "Camelia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "Yes",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "Yes",							//42 Wi Fi
						 "No",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "This wonderful new villa has been decorated and furnished to an exceptionally high standard. The spacious accommodation will comfortably sleep up to 12 guests, in absolute luxury. Extremely child friendly our family vacation home offers you and your family everything the ideal holiday base.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[116] = new Array("116",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[117] = new Array("117",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[118] = new Array("118",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[119] = new Array("119",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[120] = new Array("120",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[121] = new Array("121",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[122] = new Array("122",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[123] = new Array("123",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[124] = new Array("124",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[125] = new Array("125",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[126] = new Array("126",							//0 Property ID
						 "Lee",					//1 First Name
						 "Hall",						//2 Surname
						 "36 Bourne Vale",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Hayes",						//5 Town
						 "Kent",					//6 County or State
						 "BR2 7JW",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0208 402 2986",					//9 Daytime Phone Number
						 "0208 562 1480",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "0774 760382",					//12 Mobile or Cell Number
						 "hallsflorida.villa@ntlworld.com",						//13 Email Address
						 "211 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "Yes",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "Yes",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "This beautiful 4 bedroom villa provides you with a beautiful south facing pool to soak up all those rays throughout the day. With the owners having a young family, everything is provided for, should any potential renters have young children.<br /><br />The interior is decorated to a very high standard",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[127] = new Array("127",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[128] = new Array("128",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[129] = new Array("129",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[130] = new Array("130",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[131] = new Array("131",							//0 Property ID
						 "Ian",					//1 First Name
						 "Barnes",						//2 Surname
						 "Cherry Tree Lodge",					//3 Address Line 1
						 "Mickey Lane, Totley",					//4 Address Line 2
						 "Sheffield",						//5 Town
						 "South Yorkshire",					//6 County or State
						 "S17 4HE",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0114 236 0896",					//9 Daytime Phone Number
						 "0114 236 0896",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "ianbarnes2@msn.com",						//13 Email Address
						 "303 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "6",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.floridavipvacations.com/vt1.php?id=71&web=frame",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Beautiful, 3 bedroom courtyard villa superbly furnished to a high standard. 2 bathrooms (1 en-suite), a fully fitted kitchen, air conditioning and heating throughout, a comfortable seating area, a large dining area and a Southwest facing pool and spa. 3 TVs, DVD, CD player and Playstation 2.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[132] = new Array("132",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[133] = new Array("133",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[134] = new Array("134",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[135] = new Array("135",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[136] = new Array("136",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[137] = new Array("137",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[138] = new Array("138",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[139] = new Array("139",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[140] = new Array("140",							//0 Property ID
						 "Suzanne",					//1 First Name
						 "Dempster",						//2 Surname
						 "2 Stradbroke Way",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Leeds",						//5 Town
						 "West Yorkshire",					//6 County or State
						 "LS12 4NB",					//7 Post or Zip Code
						 "United Kingdom",						//8 Country
						 "0113 231 9251",					//9 Daytime Phone Number
						 "0113 231 9251",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07779 796455",					//12 Mobile or Cell Number
						 "suzanne@fonduefountainsyorkshire.co.uk",						//13 Email Address
						 "424 Brunello Drive",				//14 Villa Address
						 "Camellia",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "5",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "12",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.availcheck.com/cgi-bin/calendar.cgi?propid=3662",						//23 Availability Calendar Link
						 "http://www.florida-courtyard-villa.com",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "IMMACULATE, BRAND NEW VILLA with fun features for the kids - GUARANTEED LUXURY!",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[141] = new Array("141",							//0 Property ID
						 "Nigel",					//1 First Name
						 "Date",						//2 Surname
						 "Stockwith Mill",					//3 Address Line 1
						 "Harrington Road",					//4 Address Line 2
						 "Hagworthingham, Spilsby",						//5 Town
						 "Lincs",					//6 County or State
						 "PE23 4NE",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01507 588221",					//9 Daytime Phone Number
						 "01507 588221",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "nigel.date@virgin.net",						//13 Email Address
						 "414 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.homeawayconnect.com/calendar.aspx?propertyid=428697",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "VILLA BARELLO, A VILLA YOU WILL FEEL AT HOME IN, CONTAINS ALL YOU WILL NEED FOR A GREAT HOLIDAY IN THE SUN.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[142] = new Array("142",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[143] = new Array("143",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[144] = new Array("144",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[145] = new Array("145",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[146] = new Array("146",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[147] = new Array("147",							//0 Property ID
						 "Mark and Deena",					//1 First Name
						 "Yarrow",						//2 Surname
						 "46 Wickham Avenue",					//3 Address Line 1
						 "Cheam",					//4 Address Line 2
						 "Sutton",						//5 Town
						 "Surrey",					//6 County or State
						 "SM3 8DU",					//7 Post or Zip Code
						 "United Kingdom",						//8 Country
						 "020 8644 7094",					//9 Daytime Phone Number
						 "020 8644 7094",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07957 352 430",					//12 Mobile or Cell Number
						 "mark@rent-disney-villa.com",						//13 Email Address
						 "312 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "8",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "http://www.rent-disney-villa.com/availability.php",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Luxurious 4 bedroom / 3.5 bathroom villa with private pool and spa. Beautifully landscaped with full access to all Club House Facilities. With numerous upgrades and just a 10 minute drive to Disney Maingate - this villa offers you the ultimate Florida vacation experience...",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[148] = new Array("148",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[149] = new Array("149",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[150] = new Array("150",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[151] = new Array("151",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[152] = new Array("152",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[153] = new Array("153",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[154] = new Array("154",							//0 Property ID
						 "Michael",						//1 First Name
						 "Rookes",						//2 Surname
						 "43 Pikespurse Lane",			//3 Address Line 1
						 "",							//4 Address Line 2
						 "Richmond",					//5 Town
						 "North Yorkshire",				//6 County or State
						 "DL10 4PS",					//7 Post or Zip Code
						 "UK",							//8 Country
						 "01748 824524",				//9 Daytime Phone Number
						 "01748 824524",				//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",							//12 Mobile or Cell Number
						 "mickeyrookes@fsmail.net",						//13 Email Address
						 "200 Brunello Drive",				//14 Villa Address
						 "Aster",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "3",						//17 Number of Bedrooms
						 "2",						//18 Number of Bathrooms
						 "6",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "Yes",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "Yes",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "Yes",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "Yes",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Superbly furnished 3 bedroom 2 bathroom court yard villa with private screened pool and hot tub complete with its own games room. Highspeed secure wireless internet is also provided with FREE calls to UK land lines.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[155] = new Array("155",							//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property


proparray[156] = new Array("156",						//0 Property ID
						 "Sean",					//1 First Name
						 "Reilly",						//2 Surname
						 "5 New Road",					//3 Address Line 1
						 "",					//4 Address Line 2
						 "Llanelli",						//5 Town
						 "Carmarthenshire",					//6 County or State
						 "SA15 3DP",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "01792 882961",					//9 Daytime Phone Number
						 "",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "",					//12 Mobile or Cell Number
						 "claire@reilly1746.freeserve.co.uk",						//13 Email Address
						 "148 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "Yes",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "Yes",							//30 Table Tennis
						 "Yes",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "Yes",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "Yes",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "Yes",							//51 Free Local Phone Calls
						 "Yes",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Built by Great Homes of America (builders of the prestigious Tuscan Ridge), it is superbly furnished to a deluxe standard and would be ideal for a large family or two smaller families to share, being able to accommodate up to 10 adults and has its own private screened pool and spa, and two luxurious master bedroom suites.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[157] = new Array("157",						//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[158] = new Array("158",						//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property

proparray[159] = new Array("159",							//0 Property ID
						 "Gwen",					//1 First Name
						 "Ashworth-Brown",						//2 Surname
						 "20 Miriam Street",					//3 Address Line 1
						 "Failsworth",					//4 Address Line 2
						 "Manchester",						//5 Town
						 "Lancs",					//6 County or State
						 "M35 0LA",					//7 Post or Zip Code
						 "UK",						//8 Country
						 "0161 682 7819",					//9 Daytime Phone Number
						 "0161 682 7819",					//10 Evening Phone Number
						 "",							//11 Fax Number
						 "07896 950 852",					//12 Mobile or Cell Number
						 "wmbgjab@sky.com",						//13 Email Address
						 "118 Brunello Drive",				//14 Villa Address
						 "Bougainvillea",					//15 Villa Name
						 "Courtyard",				//16 Property Type
						 "4",						//17 Number of Bedrooms
						 "3.5",						//18 Number of Bathrooms
						 "10",							//19 Maximum Number of Occupants
						 "Yes",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "",						//23 Availability Calendar Link
						 "",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "Yes",							//26 Games Room
						 "Yes",							//27 Pool Table
						 "No",							//28 Foosball
						 "Yes",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "Yes",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "Yes",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "Yes",							//39 Playstation
						 "No",							//40 Nintendo
						 "Yes",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "Yes",							//43 CD Player
						 "Yes",							//44 Sofa Bed
						 "Yes",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "Yes",							//47 TV in Each Room
						 "Yes",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "Yes",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "WHY NOT TREAT YOUR FAMILY TO A HOLIDAY THEY WILL NEVER FORGET. Staying in luxury accommodation that is only 10 minutes to Disney Theme Parks. Our Home is situated on a brand new community. TUSCAN HILLS is the newest Gated Complex on the US 27.",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "Yes",							//56 Include in Search
						 "Yes");							//57 Include in Random Property

proparray[160] = new Array("160",						//0 Property ID
						 "FirstName",					//1 First Name
						 "Surname",						//2 Surname
						 "Address1",					//3 Address Line 1
						 "Address2",					//4 Address Line 2
						 "Town",						//5 Town
						 "CountyState",					//6 County or State
						 "PostcodeZip",					//7 Post or Zip Code
						 "Country",						//8 Country
						 "DayPhone",					//9 Daytime Phone Number
						 "EvePhone",					//10 Evening Phone Number
						 "Fax",							//11 Fax Number
						 "MobileCell",					//12 Mobile or Cell Number
						 "Email",						//13 Email Address
						 "VillaAddress",				//14 Villa Address
						 "VillaName",					//15 Villa Name
						 "PropertyType",				//16 Property Type
						 "Beds",						//17 Number of Bedrooms
						 "Baths",						//18 Number of Bathrooms
						 "Max",							//19 Maximum Number of Occupants
						 "No",							//20 Disabled Access
						 "No",							//21 Smoking Allowed
						 "No",							//22 Pets Allowed
						 "href",						//23 Availability Calendar Link
						 "href",						//24 Virtual Tour Link
						 "No",							//25 Spa or Hot tub
						 "No",							//26 Games Room
						 "No",							//27 Pool Table
						 "No",							//28 Foosball
						 "No",							//29 Air Hockey
						 "No",							//30 Table Tennis
						 "No",							//31 Electronic Darts
						 "No",							//32 Cot or Crib
						 "No",							//33 Stroller or Buggy
						 "No",							//34 High Chair
						 "No",							//35 Stair Gate
						 "No",							//36 Roll out beds
						 "No",							//37 Internet Access
						 "No",							//38 XBox
						 "No",							//39 Playstation
						 "No",							//40 Nintendo
						 "No",							//41 DVD Player
						 "No",							//42 Wi Fi
						 "No",							//43 CD Player
						 "No",							//44 Sofa Bed
						 "No",							//45 BBQ
						 "No",							//46 Large Screen TV
						 "No",							//47 TV in Each Room
						 "No",							//48 Themed Kids Rooms
						 "No",							//49 Free Grocery or Welcome Pack
						 "No",							//50 Rear Privacy
						 "No",							//51 Free Local Phone Calls
						 "No",							//52 Free International Phone Calls
						 "No",							//53 Premier League Soccer Channel
						 "Summary",						//54 Summary for Search Page
						 "Description",					//55 Description for Villa Home Page
						 "No",							//56 Include in Search
						 "No");							//57 Include in Random Property