//front1.js

if (!useRedirect) {		// if dynamic embedding is turned on
	if(hasRightVersion) {	// if we've detected an acceptable version
		var oeTags = '<object hspace=5 vspace=5 align=right classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"'
		+ 'width="220" height="220"'
		+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
		+ '<param name="movie" value="front1.swf">'
		+ '<param name="play" value="true">'
		+ '<param name="loop" value="true">'
		+ '<param name="quality" value="high">'
		+ '<param name="menu" value="false">'
		+ '<embed hspace=5 vspace=5 align=right src="front1.swf"'
		+ 'width="220" height="220"'
		+ 'play="true"'
		+ 'loop="true"'
		+ 'quality="high"'
		+ 'menu="false"'
		+ '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 = '<IMG SRC="images/front1alt.jpg" HEIGHT="220" WIDTH="220" HSPACE=5 VSPACE=5 ALIGN=right>'	// height and width are required!
		;

		document.write(alternateContent);	// insert non-flash content
	}
}
