//--------------------------------------------//
// HOW MANY RANDOM QUOTES DO WE HAVE?
//--------------------------------------------//

var numberquotes = 4 ;


//--------------------------------------------//
// DON'T CHANGE ANYTHING BELOW THIS LINE
//--------------------------------------------//

// Enter a number below for quoteType:
// (for QUOTE, enter quoteType = 1)
// (for NEWS HEADLINE, enter quoteType = 2)
// (for TRIVIA QUESTION, enter quoteType = 3)
// (for FACTOID, enter quoteType = 4)
var quoteType = 4;

var strMovie = "default.swf";


var randomnumber = Math.random() ;
var rand1 = Math.round( (numberquotes-1) * randomnumber) + 1 ;

if (quoteType == 1)
		{strMovie = "quote.swf";}
else if (quoteType == 2)
		{strMovie = "news.swf";}
else if (quoteType == 3)
		{strMovie = "trivia.swf";}
else if (quoteType == 4)
		{strMovie = "factoid" + rand1 + ".swf";}

function makeFlash()
	{
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
document.write('codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ');
document.write('ID=quote WIDTH=216 HEIGHT=179><PARAM NAME=movie VALUE=');
document.write('"movies/' + strMovie + '">');
document.write('<PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#C8CCE5>');
document.write('<EMBED src="movies/' + strMovie + '" quality=high bgcolor=#C8CCE5 ');
document.write('WIDTH=216 HEIGHT=179 TYPE="application/x-shockwave-flash" ');
document.write('PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?');
document.write('P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>');
}

function HateCrimes()
	{
document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ');
document.write('codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=4,0,0,0" ');
document.write('ID=quote WIDTH=216 HEIGHT=179><PARAM NAME=movie VALUE=');
document.write('"movies/hatecrimes.swf">');
document.write('<PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#C8CCE5>');
document.write('<EMBED src="movies/hatecrimes.swf" quality=high bgcolor=#C8CCE5 ');
document.write('WIDTH=216 HEIGHT=179 TYPE="application/x-shockwave-flash" ');
document.write('PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?');
document.write('P1_Prod_Version=ShockwaveFlash"></EMBED></OBJECT>');
}