function view_flash(L,W,H){
	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="'+W+'" height="'+H+'">');
	document.write('<PARAM name="movie" value="'+L+'">');
	document.write('<PARAM name="wmode" value="Transparent">');
	document.write('<PARAM name="quality" value="high">');
	document.write('<EMBED src="'+L+'" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="'+W+'" height="'+H+'"></EMBED>');
	document.write('</OBJECT>');
}

function view_audio(L,W,H,ID,AS){
	document.write('<EMBED id="'+ID+'" src="'+L+'" width="'+W+'" height="'+H+'" border="0" vspace="0" hspace="0" align="center" loop="infinity" type="application/x-mplayer2" autostart="'+AS+'" hidden="false" pluginspage="http://www.microsoft.com/windows/mediaplayer/en/download/Win32IE4x86.asp"></EMBED>');
}

function view_video(L,W,H){view_wmPlayer('MediaPlayer',W,H);}
function view_wmPlayer(ID,W,H){
	document.write('<object id="' + ID + '" ');
	document.write('					codebase="HTTP://ACTIVEX.MICROSOFT.COM/ACTIVEX/CONTROLS/MPLAYER/EN/NSMP2INF.CAB#VERSION=6,4,7,1112" ');
	document.write('					type="application/x-oleobject" height="' + H + '" width="' + W + '" ');
	document.write('					standby="Loading Microsoft Windows Media Player components..." ');
	document.write('					align="middle" classid="CLSID:6BF52A52-394A-11D3-B153-00C04F79FAA6" viewastext>');
	document.write('	<PARAM NAME="EnableContextMenu" VALUE="0"> ');
	document.write('</object>');
}

