//---------------------------------------------------------------------------------------------------
// Copyright © 2002 Bushman Technologies (http://www.bushmantech.net)								-
//---------------------------------------------------
var qArr = new Array();
// Add quotes here.
qArr[00] = ["", "The condo was superb... we'll definitely be back."];
qArr[01] = ["", "We would highly recommend Lakeridge to anyone coming to Queenstown."];
qArr[02] = ["", "The property was in excellent condition and beautifully clean."];
qArr[03] = ["", "What a wonderful set of apartments and location you have."];
qArr[04] = ["", "We will be coming back next year again to Queenstown to ski and of course we will stay again at the Lakeridge"];
qArr[05] = ["", "We had a fantastic time and really enjoyed our stay at the Lakeridge apartments"];
qArr[06] = ["", "We loved staying at LakeRidge."];
qArr[07] = ["", "The condo was fantastic."];
qArr[08] = ["", "The condos were fabulous, everyone enjoyed staying there."];
qArr[09] = ["", "Great location, great views, very clean and modern and YES we were warm."];
qArr[10] = ["", "The underfloor heating was enough to heat the whole place and keep us toasty!"];
qArr[11] = ["", "We had a fantastic time, and are pleased that we chose Lakeridge."];
qArr[12] = ["", "If I ever get the chance to visit Queenstown again, I cannot see any reason why I would want to try any other apartment than these."];
qArr[13] = ["", "Beautiful apartment, very tastefully decorated, and feels like home."];
qArr[14] = ["", "We thought the position was superb and everything was beautifully clean."];
qArr[15] = ["", "Incredible views, excellent facilities, great holiday. We'll be back."];


qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+"<BR>"+qArr[x][0]+" ");
	document.close();
}

function gUQ(){
	z=false;x=0;
	for(var i=0;i<1;){x=Math.floor(Math.random()*(qArr.length));if(checkIt(x)) i = 1;}
	qUsed[qUsed.length] = x;return x;
}

function checkIt(val){
	for(i=0;i<qUsed.length;i++){if(qUsed[i]==val){return false;}}
	return true;
}
