// in this section we set up the content to be placed dynamically on the page
// customize movie tags and alternate html content below
//
//if dynamic embedding is turned on
if (!useRedirect) {
     //if we've detected an acceptable version
     if(hasRightVersion) {
		var oeTags = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0" width="309" height="269" id="NewWindsor" align="left">'
		+ '<param name="allowScriptAccess" value="sameDomain" />'
		+ '<param name="movie" value="/flash/NewWindsor.swf" />'
		+ '<param name="menu" value="false" />'
		+ '<param name="quality" value="low" />'
		+ '<param name="salign" value="lt" />'
		+ '<param name="bgcolor" value="#ffffff" />'
		+ '<embed src="/flash/NewWindsor.swf" menu="false" quality="low" salign="lt" bgcolor="#ffffff" width="309" height="269" name="NewWindsor" align="left" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'
		+ '</object>';
		document.write(oeTags);             // embed the flash movie
	}
	//flash is too old or we can't detect the plugin
	else {
		// height, width required!
		var alternateContent = '<img src="images/flash.gif" width="309" height="269">';
		// insert non-flash content
		document.write(alternateContent);
	}
}
