function create(FO) {
	document.write (
			'<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="' + FO.width + '" height="' + FO.height + '" >' +
	'<PARAM NAME=movie VALUE="' + FO.movie + '">' + 
	'<PARAM NAME="quality" value="high">' +
	'<param name="wmode" value="transparent">' +
	'<EMBED src="' + FO.movie + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="' + FO.width + '" height="' + FO.height + '" swliveconnect="true" wmode="transparent">' +
	'</embed></object>' 
			);
	
};
function createMovie(MV)
{
	
	document.write (
			'<object id="mediaPlayer" width="' + MV.width + '" height="'+ MV.height+ '" classid="clsid:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player" type="application/x-oleobject">' +
	'<PARAM NAME=fileName VALUE="' + MV.movie + '">' + 
	'<PARAM NAME="animationatStart" value="true">' +
	'<PARAM NAME="transparentatStart" value="false">' +
	'<PARAM NAME="autoStart" value="' + MV.autostart + '">' +
	'<PARAM NAME="showControls" value="true">' + 
	'<PARAM NAME="currentPosition" value="1"></object>'
			);
	
}
