function addWindowsMedia(movieId,width,height,src,targetID) {
	var destination=document.getElementById(targetID);

	var media = document.createElement("video");
	media.id='mediaEmbed';
	if (media.canPlayType) {
		if (media.canPlayType('video/x-ms-wmv')=='') {
			var media=document.createElement('embed');
			height+=40;
			if (navigator.appVersion.indexOf("Win")!=-1) {
				var linkText=document.createElement('p');
				linkText.innerHTML='<a href="'+src+'" target="_blank">Klik her, hvis du har problemer med at afspille videoen.</a>';
				destination.appendChild(linkText);
			}
		}
	} else {
		var media=document.createElement('embed');
		height+=40;
	}
	media.controls="controls";
	media.showcontrols="true";
	media.src=src;
	
	media.name=movieId;
	media.width=width;
	media.height=height;
	media.autostart=false;
	destination.appendChild(media);
}