// JavaScript Document
function OpenVideo(url)
	{
	document.getElementById('DivVideo').innerHTML='<OBJECT width="263" height="215" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,5,715" id="MediaPlay"><PARAM name="filename" value="VIDEO/'+url+'.wmv" /><PARAM name="autostart" value="true" /><PARAM name="animationatstart" value="false" /><PARAM name="transparentatstart" value="false" /><PARAM name="showcontrols" value="true" /><EMBED width="263" height="215" src="VIDEO/'+url+'.wmv" FILENAME="'+url+'.wmv" autostart="true" ANIMATIONATSTART="false" TRANSPARENTATSTART="false" SHOWCONTROLS="true"></EMBED></OBJECT>';
	}
