/**
 * KWA Javascript Funktionen
 */
 
 /* Öffnet neues Fenster für Videos */
 
 function showVideo(videoURL, videoWidth, videoHeight) {
 	var winHeight = parseInt(videoHeight) +68;
 	var winWidth = parseInt(videoWidth);
 	refVideo = window.open('show_video.php?url='+videoURL+'&width='+videoWidth+'&height='+winHeight, 'kwaVideo', 'width='+winWidth+',height='+winHeight+',left=0,top=0');
	refVideo.focus();
 }
