    <!-- // QuoteSystem Code
    var quoteArray = new Array();
	var theQuoteList = "";
	// The Quotes
	// -----------------------------------------------
quoteArray[0] = "I can think of no other package that's as cost-effective for someone on a tight budget who wants to get involved in recording.|4|14|Craig Anderton|13|Keyboard Mag|12|000066";
quoteArray[1] = "...as a rule, the simpler you can keep things, the more efficient your workflow will be.|4|14|MusicTech|13|September 2007|12|000066";
quoteArray[2] = "...this die-hard Pro Tools fan of more than a decade is suddenly not as eager to go back to my old standard once I got to know Tracktion 3.|4|14|Peter Wetherbee|13|Remix Mag|12|000066";
quoteArray[3] = "&#8230;Tracktion 3 is as beautifully elegant as ever. It's still hugely intuitive, and its new features make it more powerful and easier to stay organized with than ever.|4|14||13|Computer Music|12|000066";
quoteArray[4] = "This is one deeply powerful DAW that never gets in the way of that all-important creative flow.|4|14||13|Computer Music|12|000066";
quoteArray[5] = "&#8230;I found it to be quite capable as a recording, sequencing, and mixing environment for music-production situations.|4|14|Mike Levine|13|EM|12|000066";
quoteArray[6] = "Tracktion has evolved into a remarkably capable program, folding in features like loop recording, track freeze, folder tracks, loop support, collaboration-oriented features, time signature and tempo changes, and more.|4|14|Craig Anderton|13|Keyboard Magazine|12|000066";
quoteArray[7] = "I can think of no other package that's as cost-effective for someone on a tight budget who wants to get involved in recording.|4|14|Craig Anderton|13|Keyboard Magazine|12|000066";
quoteArray[8] = "&#8230;this die-hard Pro Tools fan of more than a decade is suddenly not as eager to go back to my old standard once I got to know Tracktion 3.|4|14|Peter Wetherbee|13|Remix|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());
	//-->

