function writeMyFlashCode(myflashMovie,myFlashId,myflashWidth,myflashHeight){
		theCodeToReturn = '<div class="swfMovieFlashContent">';
		theCodeToReturn += '<object id="' + myFlashId + '" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width = "';
		theCodeToReturn += swfWidth + '" height = "' + swfHeight + '" >';
		theCodeToReturn += '<param name="movie" value="' + myflashMovie + '" />';
		theCodeToReturn += '<param name="quality" value="high" />';
		theCodeToReturn += '<param name="wmode" value="opaque" />';
		theCodeToReturn += '<param name="swfversion" value="6.0.65.0" />';
		theCodeToReturn += '<param name="expressinstall" value="scripts/expressInstall.swf" />';
		theCodeToReturn += '<!--[if !IE]>-->';
		theCodeToReturn += '<object type="application/x-shockwave-flash" data="' + myflashMovie + '"  width="' + swfWidth + '"  height="' + myflashHeight + '" >';
		theCodeToReturn += '<!--<![endif]-->';
		theCodeToReturn += '<param name="quality" value="high" />';
		theCodeToReturn += '<param name="wmode" value="opaque" />';
		theCodeToReturn += '<param name="swfversion" value="6.0.65.0" />';
		theCodeToReturn += '<param name="expressinstall" value="scripts/expressInstall.swf" />';
		theCodeToReturn += '<div>';
		theCodeToReturn += ' <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>';
		theCodeToReturn += '<p>';
		theCodeToReturn += '<a href="http://www.adobe.com/go/getflashplayer">';
		theCodeToReturn += '<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" />';
		theCodeToReturn += '</a>';
		theCodeToReturn += '</p>';
		theCodeToReturn += '</div>';
		theCodeToReturn += ' <!--[if !IE]>-->';
		theCodeToReturn += '</object>';
		theCodeToReturn += ' <!--<![endif]-->';
		theCodeToReturn += '</object>';
		//theCodeToReturn += '<object width="' + swfWidth + '"  height="' + myflashHeight + '" >';
		//theCodeToReturn += '<param name="movie" value="' + myflashMovie + '" ></param>';
		//theCodeToReturn += '<param name="allowFullScreen" value="true"></param>';
		//theCodeToReturn += '<param name="allowscriptaccess" value="always"></param>';
		//theCodeToReturn += '</object>';
		theCodeToReturn += '</div>';
		theCodeToReturn += '<!-- END div class="swfMovieFlashContent" -->';
		return(theCodeToReturn)
	}
