function ViewVideo(titel,video,b,h)
{
	var eigenschaften,fenster;
	var ns6 = (!document.all && document.getElementById);
	var ie4 = (document.all);
	var ns4 = (document.layers);
	x=100;
	y=100;
	eigenschaften="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+b+",height="+h+",menubar=no,toolbar=no,status=no,scrollbars=no,resizable=no";
	fenster=window.open("","",eigenschaften);
	fenster.focus();
	fenster.document.open();
	with (fenster)
	{
	  document.write('<html><head><title>'+titel+'</title></head><body style="margin:0px;padding:0px;"><iframe height="'+h+'" width="'+b+'" src="videoplayer.php?video='+video+'&b='+b+'&h='+h+'" scrolling="no" frameborder="0"></iframe>');
	  document.write('</body></html>');
	  fenster.document.close();
	}
}