//---------------------------------------------------------------------------------------------------
// 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] = ["", "Locate a safe room or the safest areas in your home for each hurricane hazard. In certain circumstances the safest areas may not be your home but within your community."];
qArr[01] = ["", "Post emergency telephone numbers by your phones and make sure your children know how and when to call 911."];
qArr[02] = ["", "Check your insurance coverage - flood damage is not usually covered by homeowners insurance."];
qArr[03] = ["", "Protect all windows by installing commercial shutters or preparing 5/8 inch plywood panels."];
qArr[04] = ["", "Once a hurricane warning is issued, install your window shutters or plywood panels."];
qArr[05] = ["", "Listen carefully for safety instructions from local officials, and go to your designated “Safe Room” when directed to do so."];
qArr[06] = ["", "Do not leave your “Safe Room” until directed to do so by local officials, even if it appears that the winds calmed. Remember that there is little to no wind in the eye of a hurricane."];
qArr[07] = ["", "Stock non-perishable emergency supplies and a Disaster Supply Kit."];
qArr[08] = ["", "Take First Aid, CPR and disaster preparedness classes."];
qArr[09] = ["", "Check your Disaster Supply Kit. Make sure nothing is missing. Determine if there is anything you need to supplement your kit. Replenish your water."];
qArr[10] = ["", "At the beginning of hurricane season (June 1st), check your supplies, replace batteries and use food stocks on a rotating basis."];
qArr[11] = ["", "A HURRICANE WATCH issued for your part of the coast indicates the possibility that you could experience hurricane conditions within 36 hours."];
qArr[12] = ["", "A HURRICANE WARNING issued for your part of the coast indicates that sustained winds of at least 74 mph are expected within 24 hours or less."];



qUsed = new Array();

function BTJSputQ(){
	x=gUQ();
	document.open();
 	document.write(qArr[x][1]+""+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;
}
