//---------------------------------------------------------------------------------------------------
// 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] = ["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. Reputable, clean and imaginative describe his work in our organization."];
qArr[03] = ["BizBash Magazine", "[Avi] is able to amuse your attendees while espousing the functionality of the product or service he's promoting."];
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;
}