function EmbedMedia(txtwmf,txtWidth,txtHeight,txtAutoStart,txtShowControls)
{
	document.write('<object id="MediaPlayer" width=');
	document.write(txtWidth);
	document.write(' height=');
	document.write(txtHeight);
	document.write(' classid="CLSID:22D6f312-B0F6-11D0-94AB-0080C74C7E95" standby="Laden van Windows Media Player componenten" type="application/x-oleobject" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,4,7,1112">');
	document.write('<param name="filename" value="');
	document.write(txtwmf);
	document.write('.wmv">');
	document.write('<param name="Showcontrols" value="');
	document.write(txtShowControls);
	document.write('">');
	document.write('<param name="autoStart" value="');
	document.write(txtAutoStart);
	document.write('">');
	document.write('<param name="loop" value="True">');
	document.write('<param name="transparentatStart" value="false">');
	document.write('<embed type="application/x-mplayer2" src="');
	document.write(txtwmf);
	document.write('.wmv" name="MediaPlayer" width=');
	document.write(txtWidth);
	document.write(' height=');
	document.write(txtHeight);
	document.write('></embed>');
	document.write('</object>');
}

function EmbedFlash(txtFlash,txtWidth,txtHeight)
{
	document.write('<object classid="CLSID:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + txtWidth + '" height="' + txtHeight + '">');
	document.write('<param name="movie" value="'+txtFlash+'"></param>');
	document.write('<param name="wmode" value="transparent"></param>');
	document.write('<embed src="' + txtFlash + '" type="application/x-shockwave-flash" wmode="transparent" width="' + txtWidth + '" height="' + txtHeight + '">');
	document.write('</embed>');
	document.write('</object>');
}
