var qArr = new Array();
// Add quotes here.
qArr[00] = ["...This is great!  This is definitely a 'best kept secret'."];
qArr[01] = ["...It's more laid back over here and you can't beat the price and location."];
qArr[02] = ["...Thank you for helping us to feel more at home here."];
qArr[03] = ["...From the affordability to the incredibly reliable and friendly management, The Mill is the ideal location for me to make my transition to a new place near perfect."];
qArr[04] = ["...Ron is cool!"];
qArr[05] = ["...Cheap, nice and quiet!"];
qArr[06] = ["...Great living here."];
qArr[07] = ["...The Mill is Great! It is quiet but still fun, and the landlord is excellent.  I wouldn’t live anywhere else."];
qArr[08] = ["...Great Deal!"];
qArr[09] = ["...I like that it is quieter than most other complexes, and I like its location in relation to campus."];
qArr[10] = ["...Good place to live, nice location, quick repairs."];
qArr[11] = ["...Amazing cost for what we get.  Thank you!"];
qArr[12] = ["...I love living here !! (Smiley face)."];
qArr[13] = ["...Great place, thanks for everything."];
qArr[14] = ["...Much quieter and cleaner than other places and parking is never a problem. Ron is cool! He let us borrow a table for Thanksgiving."];
qArr[15] = ["...We have 3 more daughters, providing they choose JMU, coming your way."];
qArr[16] = ["...I will highly recommend your apartment complex to friends whose son or daughter are going to JMU and wish to live off campus."];
qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(""+qArr[x][0]+" <BR><BR>(<a href=\'http:\/\/www.themillapts.com\/testimonials.htm' target=\'testimonials\'><b>more resident quotes...<b></a>)");
	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;
}