var embedText =
	'<OBJECT ' +
		'CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" ' +
		'CODEBASE="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ' +
		'WIDTH="'+customArgs.movieWidth+'" ' +
		'HEIGHT="'+customArgs.movieHeight+'" ' +
	'>' +

		'<PARAM NAME="MOVIE" VALUE="ile.swf' + location.search + '"> ' +
		'<PARAM NAME="PLAY" VALUE="true"> ' +
		'<PARAM NAME="LOOP" VALUE="false"> ' +
		'<PARAM NAME="QUALITY" VALUE="high"> ' +
		'<PARAM NAME="SCALE" VALUE="showall"> ' +
		'<PARAM NAME="MENU" VALUE="false"> ' +
		'<EMBED '+
			'SRC="ile.swf' + location.search + '" ' +
			'WIDTH="'+customArgs.movieWidth+'" ' +
			'HEIGHT="'+customArgs.movieHeight+'" ' +
			'PLAY="true" ' +
			'LOOP="false" ' +
			'QUALITY="high" ' +
			'SCALE="showall" ' +
			'TYPE="application/x-shockwave-flash" ' +
			'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" ' +
			'MENU="false" ' +
		'></EMBED>' +
	'</OBJECT>';
document.write(embedText);
// this next line is needed for netscape 4.7.  Sometimes netscape displays a blank screen instead of the ile.swf
// because the embed tag is being written out via javascript.
// If you try to display the settings box for flash player, it will finally come around, but otherwise it is blank
// this dummy setTimeout function seems to keep things alive long enough to solve this problem
document.write('<sc'+'ript>setTimeout(function() {}, 1000);</sc'+'ript>');
//--></SCRIPT>
