function loadVideo(src){
	html = '<OBJECT id="VIDEO" width="240" height="240" style="position:relative; left:0;top:0;" CLASSID="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6" type="application/x-oleobject" standby="Loading Windows Media Player">'
		+ '<PARAM NAME="URL" VALUE="video/' + src + '">'
		+ '<PARAM NAME="SendPlayStateChangeEvents" VALUE="True">'
		+ '<PARAM NAME="AutoStart" VALUE="True">'
		+ '<PARAM name="uiMode" value="mini">'<!--- invisible,none,mini,full --->
		+ '<PARAM name="PlayCount" value="1">'
		+ '<param name="enabled" value="true">'
		+ '<param name="fullscreen" value="false">'
		+ '<param name="volume" value="100">'
		+ '<param name="windowlessVideo" value="true">'
		+ '<embed src="video/' + src + '" width="240" height="240" autostart="true" loop="false" type="application/x-mplayer2" name="VIDEO2" id="VIDEO2" pluginspage="http://www.microsoft.com/Windows/MediaPlayer/"><noembed>Sorry, but you don\'t have a compatible video player installed.</noembed></EMBED>'
		+ '</OBJECT>';
	document.getElementById('videocontainer').innerHTML = html;
}
