<!--
function flash_write(f_name,width,height) {

	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='"+width+"' height='"+height+"'>");
	document.write("<param name='movie' value='"+f_name+"'>");
	document.write("<param name='quality' value='high'>");
	document.write("<embed src='"+f_name+"' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='"+width+"' height='"+height+"'></embed></object>");

}
function media_write(f_name,param,width,height) {
	document.write("<object classid='CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95' id='streaming' codebase='http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715' id='MediaPlayer' type='application/x-oleobject' width='"+width+"' height='"+height+"' standby='Loading Microsoft Windows Media Player components...'>");
	document.write("<param name='Filename' value='"+f_name+"'>"+param);	
	document.write("<embed width='"+width+"' height='"+width+"' filename='"+f_name+"' autostart='1' transparentatstart='1' animationatstart='0' showcontrols='0' showdisplay='0' showstatusbar='0' autosize='0' senderrorevents='1' sendmouseclickevents='1' clicktoplay='1' autorewind='1' sendmousemoveevents='1'></embed>");
	document.write("</object>");

}
-->