function showVideo(page,nr,lang) {
	var divinhalt;
	divinhalt = '<object type="application/x-shockwave-flash" data="player/'+page+'/video'+nr+'.swf" height="228" width="308">';
	divinhalt += '<param name="movie" value="player/'+page+'/video'+nr+'.swf" />'
			+'<param name="quality" value="high" />'
			+'<embed src="player/'+page+'/video'+nr+'.swf"'
				+' quality="high"'
				+' pluginspage="http://www.macromedia.com/go/getflashplayer"'
				+' type="application/x-shockwave-flash"'
				+' loop="false"'
				+' width="308"'
				+' height="228"></embed></object>';
	divinhalt += '<p><a href="javascript:hideVideo();"><b>x</b>';
	if(lang=="en") { divinhalt+='Close Video';
	} else { divinhalt+='Video schließen'; }
	divinhalt += '</a></p>';
	
	var videodiv = document.createElement("div");
	videodiv.id="video";
	videodiv.innerHTML=divinhalt;
	document.getElementById("content").appendChild(videodiv);
}

function hideVideo() {
	var Knoten0 = document.getElementById("video").firstChild;
	document.getElementById("video").removeChild(Knoten0);
	
	var Knoten1 = document.getElementById("video");
	document.getElementById("content").removeChild(Knoten1);
}

/*
## Für die Verwendung des Zanmantou-Flashplayers bedarf es dieser Parameter:
<param name="movie" value="player/zanmantou.swf"></param>
<param name="bgcolor" value="#000000"></param>
<param name="FlashVars" value="config=player/config_video.xml.php?video=<?php echo $p.$_GET['video']; ?>"></param>
<param name="allowScriptAccess" value="sameDomain"></param>
<param name="scale" value="noscale"></param>
<param name="salign" value="lt"></param>
*/

