function embedwmv (id, filename)
{
	document.getElementById(id).innerHTML = 
	'<object width="320" height="240" type="application/x-oleobject"' +
		'classid="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6">' +
		'<param name="url" value="' + filename + '"><param>' +
		'<param name="autostart" value="true"></param>' +
		'<param name="showcontrols" value="true"></param>' +
		'<embed width="320" height="240" src="' + filename + '"type="application/x-oleobject" autostart="false"></embed>' +
	'</object>';
}
function embedmp4 (id, filename)
{
	document.getElementById(id).innerHTML = 
	'<object width="320" height="240" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B"' + 
	'codebase="http://www.apple.com/qtactivex/qtplugin.cab">' +
		'<param name="src" value="' + filename + '">' +
		'<param name="autoplay" value="true">' +
		'<param name="type" value="video/quicktime" height="240" width="320">' +
		'<embed src="' + filename + '" height="256" width="320"' +
		'autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">' +
	'</object>';
}
function embedogg (id, filename)
{
	document.getElementById(id).innerHTML = 
	'<object data="' + filename + '" width="320" height="240" type="application/ogm">' +
		'<param name="src" value="' + filename + '">' +
		'Uw browser ondersteunt geen OGG. Probeert u een ander video formaat.' +
	'</object>';
}
