    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "If you ask me, Mackie has made some major improvements to an industry favorite.  The unit is a worthy investment.|4|14||13|DJ Times|12|000066";
quoteArray[1] = "...the SRM450v2 impressed me with its tight sound and ability to kick loudly without distortion.  The amp is optimized for the 450\'s individual drivers, and the crossover helps the SRM deliver tight, clear and punchy sound with plenty of headroom, impr|4|14||13|Guitar World|12|000066";
quoteArray[2] = "Mackie\'s attention to detail has resulted in a powered speaker that could well become a staple for rental houses, installers, bands, and DJs who want a powerful, lightweight solution to sound reinforcement without sacrificing clarity.|4|14||13|Professional Sound |12|000066";
quoteArray[3] = "... the SRM450v2 is a sequel that\'s better than the original.|4|14|George Petersen|13|Mix|12|000066";
quoteArray[4] = "If you ask me, Mackie has made some major improvements to an industry favorite.|4|14||13|Guitar World|12|000066";
	// -----------------------------------------------
	for (i=0; i<quoteArray.length; i++){
		if (theQuoteList != ""){
			theQuoteList = theQuoteList + "~" + escape(quoteArray[i]) ;
		} else {
			theQuoteList = escape(quoteArray[i]) ;
		}
	}
	var htmlTextArray = new Array();
	htmlTextArray = quoteArray[Math.round(Math.random(quoteArray.length))].split("|");
	// This code is used when a person doesn't have flash or JS
	// you can modify this code as you see fit
	//---------------------------------------------------
	var noFlashHTML = '<table cellpadding=\"10\" cellspacing=\"0\" border=\"0\" width=\"100%\" height=\"100%\" bgcolor=\"#FBFBFC\"><tr><td style=\"color:#000066\">' + htmlTextArray[0] + '<br><br><div align=\"right\"><b>' + htmlTextArray[3] + '</b><br>' + htmlTextArray[5] + '</div></td></tr></table>';
	//---------------------------------------------------
	var quoteSystem=new flashObj();
	quoteSystem.flashFile = "/Common/flash/MackieQuote.swf";
	quoteSystem.flashVars = "timeDelay=9000&quoteMarksColor=000066&quoteMarksAlpha=10&theQuoteList=" + theQuoteList;
	quoteSystem.bgcolor = "FFFFFF";
	quoteSystem.DenyIEdl = "TRUE";
	quoteSystem.IEonly = "FALSE";
	quoteSystem.ID = "quote";
	quoteSystem.width = "222";
	quoteSystem.height = "188";
	quoteSystem.scale = "noScale";
	quoteSystem.FlashVer = 6;
	quoteSystem.cabVersion = "6,0,65,0";
	quoteSystem.altTxt = noFlashHTML;
	document.write(quoteSystem.render());
	//-->

