//---------------------------------------------------------------------------------------------------
// Copyright © 2002 Bushman Technologies (http://www.bushmantech.net)								-
// TERMS :	You may not remove above copyright statement. The rest of this message may be deleted.	-
//			You may not remove the link to Qyoteserver homepage in the generated statement without 	-
//			consent from Bushman Technologies.														-
// Quotes from : http://quoteserver.bushmantech.net													-
//---------------------------------------------------------------------------------------------------
// Author(s): Richard de Breyn						-
//---------------------------------------------------
// INCLUDED : 31 quotes.							-
// USAGE 	: Include this file into HTML document.	-
//			  In HTML document, include the line:	-
//				<script>putQ();</script>			-
// UPDATES 	: http://www.bushmantech.net			-
//---------------------------------------------------
var qArr = new Array();
// Add quotes here.
qArr[00] = ["The Pittsburgh Chronicle", "Sometimes dangerous, often hilarious."];
qArr[01] = ["The Miami Herald", "The audience was riveted... from start to finish."];
qArr[02] = ["Julie Roberts<br>Boca Raton Resort & Club", "BRAVO! Your show was superb and provided a very entertaining evening for everyone."];
qArr[03] = ["Felice Friedson<br>WWNN Radio", "...delightful lunacy..."];
qArr[04] = ["Robert Strong<br>Strong Entertainment", "He handled the crowd of over a thousand people very well. His innovations in presentation will change the art of magic forever. I am sure I will be booking many future events thanks in large part to Avi."];
qArr[05] = ["Stephen Kurtz<br>Software Solutions Consulting, Inc.", "Avi can capture an audience of any size or type. His electric personality, creative genius and innovative performances make him someone that any organization can use as an emcee, comedian or magician."];
qArr[06] = ["Steve Kerzer<br>Hollywood, FL", "Avi is a riot. He performed at my daughter's bat-mitzvah and I've seen him at much larger events. He's smart, organized and really knows how to interact with a crowd. A winner for any event!"];
qArr[07] = ["Jason Broth<br>JT Recruiting, LLC", "Avi is the ultimate in entertainment. He keeps the audience involved and on the edge of their seat. He is professional, entertaining, funny and just plain good at what he does. I would recommend Avi for your personal as well as your professional needs. He won't let you down."];
qArr[08] = ["BizBash Magazine", "Not your typical magician."];
qArr[09] = ["The Hollywood Gazette", "Avi's show moves from rip-roaring-funny, to edge-of-your-seat-dangerous, to you'll-be-awake-all-night-trying-to-figure-out-how-he-did-that, and back again, in nothing flat."];
qArr[10] = ["The Hollywood Gazette", "BEST LOCAL ENTERTAINER - 2008"];
qArr[11] = ["David M. Udoff<br>South Florida Sun Times", "Avi Frier let the entertainment roll with a comedy magic routine that had the audience in stitches."];
qArr[12] = ["WFOR CBS-4, Miami", "[Avi] is giving David Copperfield a run for his money."];
qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+"<p align=\"right\">- "+qArr[x][0]+"<br> <br>");
	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;
}