<!-- // HIDE SCRIPT FROM INCOMPATIBLE BROWSERS/*********************************************************File Author:  Sabrina K. BeachFile Name:    getQuote.jsFile created: 03/09/04**********************************************************Directions for Use:Update quote text-    Add a new line reading [[ quoteText[#] = "quote"; ]] where "#" is the     next number in series and "quote" is the text to display.3 steps to use this file-	1.  In the <body> tag, add [[ onLoad="genQuote = setInterval('getQuote()',####);" ]]	    where "####" is the number of seconds for refresh expressed in milliseconds.	2.  In the <head> tag, add [[ <script language="JavaScript" src="getQuote.js"></script> ]]	3.  Where you want the text to be refreshed, add [[ <div id="quoteText">text</div> ]]	    and "text" is the initial content to be displayed when page loads.*********************************************************/// Declare global variablesvar lastDispNum = 0;var dispNum = 0;// Create ArrayquoteText = new Array();// Add new quotes here.  There must be at least two quotes and numbering begins at 0 (zero).quoteText[0] = "\"There is no requirement to look at program performance\". <br>~ State Superintendent for Curriculum";quoteText[1] = "\"We base our new programs on expert opinion, so we know they work\". <br>~ Division Director of State Education Department";quoteText[2] = "\"There are no resources available for program evaluation\". <br>~ State Education Commissioner";quoteText[3] = "\"We are consumed with just getting the new programs in place;<br> there's no time for thinking about evaluation. Maybe in five years...\". <br>~ Deputy Superintendent of large urban school district";quoteText[4] = "\"I only want to participate in evaluations that prove this program works\". <br>~ Supporter/funder of school reading program";quoteText[5] = "\"We only fund program. Evaluation is someone else's business\". <br>~ Program Officer for Education in national foundation";quoteText[6] = "\"We do satisfaction surveys to prove our programs are effective\". <br>~ Executive Director of national reform initiative";quoteText[7] = "\"We don't have the skills in house, so whatever gets done, we farm it out\". <br>~ State Commissioner of Education";quoteText[8] = "\"We worked for several years to evaluate the program, but the Final Report was never used\". <br>~ Principal Investigator of national evaluation";function getQuote() {	// This while loop ensures we don't repeat a quote twice in succession	while (lastDispNum == dispNum) {		// Generate random number based on array size.		dispNum = Math.round(Math.random()*(quoteText.length - 1));	}	// update lastDispNum variable	lastDispNum = dispNum;	// Display quote	document.getElementById('quoteText').innerHTML = quoteText[dispNum];}// END HIDE SCRIPT FROM INCOMPATIBLE BROWSERS -->