// JavaScript Document

function ShowVideo(cn)
{
	document.write('<object id="objMediaPlayer" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" width="426" height="320">');
	document.write('<param name="FileName" value="' + cn + '">');
	//document.write('<param name="EnableContextMenu" value="false">');
	document.write('<param name="fullScreen" value="true">');
	document.write('<param name="ShowControls" value="1">');
	document.write('<param name="ShowStatusBar" value="0">');
	document.write('<param name="volume" value="-900">');
	document.write('<embed src="' + cn + '" width="426" height="320" volume="-300">');
	document.write('</embed></object>');
}