//  -----------------------------------------
//  ******** SonicIQ flash detection ********
//  -----------------------------------------
//    Insert flash or non-flash content
//    depending on gotSafeVersion
//  -----------------------------------------

var iqContent

if(gotSafeVersion) {
  iqContent = '<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
  + 'WIDTH="708" HEIGHT="64"'
  + 'CODEBASE="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
  + '<PARAM NAME="MOVIE" VALUE="banner.swf">'
  + '<PARAM NAME="PLAY" VALUE="true">'
  + '<PARAM NAME="LOOP" VALUE="true">'
  + '<PARAM NAME="QUALITY" VALUE="high">'
  + '<PARAM NAME="MENU" VALUE="false">'
  + '<EMBED SRC="banner.swf"'
  + 'WIDTH="708" HEIGHT="64"'
  + 'PLAY="true"'
  + 'LOOP="true"'
  + 'QUALITY="high"'
  + 'MENU="false"'
  + 'TYPE="application/x-shockwave-flash"'
  + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
  + '</EMBED>'
  + '</OBJECT>';
} else {
  iqContent = '<img src="images/banner.jpg" width="708" height="64">';
}

document.write(iqContent);  // insert flash or non-flash content