function InsertFlash(ident,Source,Width,Height)	{
	document.write('<OBJECT CLASSID="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" CODEBASE="http://active.macromedia.com/flash5/cabs/swflash.cab#version=5,0,0,0"" WIDTH='+Width+' HEIGHT='+Height+'> ');
	document.write(' <PARAM NAME="movie" VALUE="'+Source+'">');
	document.write(' <PARAM NAME="play" VALUE="true">');
	document.write(' <PARAM NAME="quality" VALUE="high">');
	document.write(' <EMBED NAME='+ident+' SRC="'+Source+'" WIDTH='+Width+' HEIGHT='+Height+' PLAY=true SWLIVECONNECT=true QUALITY=high>');
	document.write('</OBJECT>');
}