
//rightVersion is from flashdetect.js 
if(rightVersion) 
{  // if we've detected an acceptable version

document.write( "<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\"\n" );
			document.write( "  codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\"\n" );
			document.write( "  width=\"750\" height=\"350\">\n" );
			document.write( "  <param name=\"movie\" value=\"/fed101/fedclue/fedclue.swf\">\n" );
			document.write( "  <param name=\"quality\" value=\"high\">\n" );
			document.write( "  <param name=\"bgcolor\" value=\"#FFFFFF\">\n" );
			document.write( "    <embed src=\"/fed101/fedclue/fedclue.swf\"\n" );
			document.write( "     quality=\"high\" bgcolor=\"#FFFFFF\"\"\n" );
			document.write( "     width=\"750\" height=\"350\"\n" );
			document.write( "     type=\"application/x-shockwave-flash\"\n" );
			document.write( "     pluginspage=\"http://www.macromedia.com/go/getflashplayer\"></embed>\n" );
			document.write( "</object>\n" );
			} 
else 
{  
  // flash is too old or we can't detect the plugin
  //calls  writeAlternateContent in flashdetect.js passes the link to the text version
  writeAlternateContent();

}