if (!useRedirect) {
  if(hasRightVersion) {
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="590" height="500"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0">'
    + '<param name="movie" value="biggayabo.swf" />'
    + '<param name="play" value="true" />'
    + '<param name="quality" value="high" />'
    + '<param name="menu" value="false" />'
    +	'<param name="bgcolor" value="#488588" />'
    + '<embed src="biggayabo.swf"'
    + 'width="590" height="500"'
    + 'play="true"'
    + 'bgcolor="#488588"'
    + 'quality="high"'
    + 'menu="false"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '</embed>'
    + '</object>';

    document.write(oeTags);
  } else {
    var alternateContent = '<div id="bugger">Sorry, you need the <em>Flash 6</em> plugin to view this file<br />' 
      + '(earlier versions won\'t work)<br />'
      + 'You can download the free plugin from '
	+ '<a href="http://www.macromedia.com/go/getflashplayer">Macromedia</a>.</div>';

    document.write(alternateContent);  // insert non-flash content
  }
}

