// in this section we set up the content to be placed dynamically on the page
// customize movie tags and alternate html content below

if (!useRedirect) {		// if dynamic embedding is turned on
	if(hasRightVersion) {	// if we've detected an acceptable version
		document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width='+movieWidth+' height='+movieHeight+' codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#5,0,0,0"><param name="SRC" value='+movieSrc+'><param name="QUALITY" value="high"><embed src='+movieSrc+' width='+movieWidth+' height='+movieHeight+' quality="high" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/shockwave/download/"></EMBED></OBJECT>'); 	// embed the flash movie
	} else {	// flash is too old or we can't detect the plugin								
		document.write(alternateContent);	// insert non-flash content
	}
}