function FlashTagChange(FileName, Width, Height) {
	document.write('<OBJECT codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0"  width="'+ Width +'" height="'+ Height +'" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">');
	document.write('<PARAM NAME="_cx" VALUE="25135">');
	document.write('<PARAM NAME="_cy" VALUE="5927">');
	document.write('<PARAM NAME="Movie" VALUE="'+ FileName +'">');
	document.write('<PARAM NAME="Src" VALUE="'+ FileName +'">');
	document.write('<PARAM NAME="WMode" VALUE="Window">');
	document.write('<PARAM NAME="Play" VALUE="-1">');
	document.write('<PARAM NAME="Loop" VALUE="-1">');
	document.write('<PARAM NAME="Quality" VALUE="High">');
	document.write('<PARAM NAME="Menu" VALUE="-1">');
	document.write('<PARAM NAME="Scale" VALUE="ShowAll">');
	document.write('<PARAM NAME="DeviceFont" VALUE="0">');
	document.write('<PARAM NAME="EmbedMovie" VALUE="0">');
	document.write('<PARAM NAME="SeamlessTabbing" VALUE="1">');
	document.write('<PARAM NAME="Profile" VALUE="0">');
	document.write('<PARAM NAME="ProfilePort" VALUE="0">');
	document.write('<embed src="'+ FileName +'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"  width="'+ Width +'" height="'+ Height +'"> </embed>');
	document.write('</OBJECT>');
}


function MovieTagChange(FileName, Width, Height) {
	 document.write('<OBJECT classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="'+ Width +'">');
		document.write('<PARAM NAME="Filename" VALUE="'+ FileName +'">');
		document.write('<param name="ClickToPlay" value="False">');
		document.write('<param name="AutoSize" value="true">');
		document.write('<param name="AutoStart" value="true">');
		document.write('<param name="ShowControls" value="true">');
		document.write('<param name="ShowAudioControls" value="true">');
		document.write('<param name="ShowDisplay" value="false">');
		document.write('<param name="ShowTracker" value="true">');
		document.write('<param name="ShowStatusBar" value="false">');
		document.write('<param name="EnableContextMenu" value="false">');
		document.write('<param name="ShowPositionControls" value="false">');
		document.write('<param name="ShowCaptioning" value="false">');
		document.write('<param name="AutoRewind" value="true">');
		document.write('<param name="Enabled" value="true">');
		document.write('<param name="EnablePositionControls" value="true">');
		document.write('<param name="EnableTracker" value="true">');
		document.write('<param name="PlayCount" value="1">');
		document.write('<param name="SendWarningEvents" value="true">');
		document.write('<param name="SendErrorEvents" value="true">');
		document.write('<param name="SendKeyboardEvents" value="false">');
		document.write('<param name="SendMouseClickEvents" value="false">');
		document.write('<param name="SendMouseMoveEvents" value="false">');
		document.write('<param name="ShowGotoBar" value="false">');
		document.write('<param name="TransparentAtStart" value="false">');
		document.write('<param name="Volume" value="0">');
		document.write('</OBJECT>');
}