
// 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
		var oeTags = '<OBJECT classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
 + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0"' 
 + ' WIDTH=300 HEIGHT=300><PARAM NAME=movie VALUE="flash/logos.swf">'
 + '<PARAM NAME=quality VALUE=high><PARAM NAME=bgcolor VALUE=#A8A39E>'
 + '<EMBED src="flash/logos.swf" quality=high bgcolor=#A8A39E WIDTH=300 HEIGHT=300 '
 + 'TYPE="application/x-shockwave-flash"'  
 + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
 + '</EMBED></OBJECT>';

		document.write(oeTags); 	// embed the flash movie
	} else {	// flash is too old or we can't detect the plugin
		var alternateContent = '<table border="0" width="300" cellpadding="0" height="150" cellspacing="0"><tr><td><img src="images/spacer.gif" width="300" height="1" border="0"></td></tr></table>'	// height, width required!
			;//any desired alternate html code goes here

		document.write(alternateContent);	// insert non-flash content
	}
}

