function buildQuotes() {if (!useRedirect) {  if(hasRightVersion) {    p = document.getElementById("quote");	p.innerHTML  = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'    + 'WIDTH="180" HEIGHT="130"'    + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'    + '<PARAM NAME="MOVIE" VALUE="/flash/quotes.swf">'    + '<PARAM NAME="PLAY" VALUE="true">'    + '<PARAM NAME="QUALITY" VALUE="high">'    + '<PARAM NAME="MENU" VALUE="false">'	+ '<PARAM NAME="WMODE" VALUE="transparent">'    + '<EMBED SRC="/flash/quotes.swf"'    + 'WIDTH="180" HEIGHT="130"'    + 'PLAY="true"'    + 'LOOP="false"'    + 'QUALITY="high"'    + 'MENU="false"'	+ 'WMODE="transparent"'    + 'TYPE="application/x-shockwave-flash"'    + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'    + '<\/EMBED>'    + '<\/OBJECT>';  } else {	p = document.getElementById("quote");	p.innerHTML  = '<table border="0" cellspacing="0" cellpadding="0" class="tQuotes">'    + '<tr>'    + '<td class="lQuote"><img src="images/misc/transPix.gif" alt="" width="10" height="1"></td>'    + '<td class="rQuote"><img src="images/misc/transPix.gif" alt="" width="170" height="1"></td>'    + '</tr>'    + '<tr>'    + '<td class="lQuote"><p class="qQuote">&quot;</p></td>'    + '<td class="rQuote"><p class="qCopy">Children should use enquiry skills in context. These up-to-the-minute stories will captivate them&quot;</p></td>'    + '</tr>'    + '<tr>'    + '<td class="lQuote"><img src="images/misc/transPix.gif" alt="" width="10" height="1"></td>'    + '<td class="rQuote"><p class="qTitle"><b>Anne Goldsworthy</b><br />'    + 'Primary Science Expert</p></td>'    + '</tr>'	+ '<tr><td><img src="images/misc/transPix.gif" alt="" width="10" height="40"></td></tr>'    + '</table>';  }}}