var flash = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="450" height="290">' + 
	'<param name="movie" value="list.swf">' + 
	'<param name="quality" value="high">' +
	'<PARAM NAME=wmode VALUE=transparent>' +
	'<embed src="list.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="290"></embed>' + 
	'</object>';

if ( DetectFlashVer == 0) {
	alert("This page requires AC_FlashDetect.js.");
} else {
	var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
	if(hasRightVersion) {  // if we've detected an acceptable version
		// embed the flash movie
		document.write(flash);
	} else {  // flash is too old or we can't detect the plugin
		var alternateContent = ''
			+ 'This content requires the Adobe Flash Player.' 
			+ '<a href=http://www.macromedia.com/go/getflash/>&raquo; Get Flash &laquo;</a>';
		document.write(alternateContent);  // insert non-flash content
	}
}
