
	function changemovie($movie){
		$file = "../downloads/sonstige/oc_player_v1.swf?filename="+$movie;
		document.getElementById("div_flashmovie").innerHTML = '<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="330" height="280" id="vid_player_v10" align="middle"><param name="allowScriptAccess" value="sameDomain" /><param name="movie" value="'+$file+'" /><param name="quality" value="high" /><param name="bgcolor" value="#cccccc" /><embed src="'+$file+'" quality="high" bgcolor="#cccccc" width="330" height="280" name="vid_player_v10" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /></object>';
	}
	
	function popup($a, $b, $c){
		window.open($a, $b, $c);
	}
	
	 function winOpen(url, breite, hoehe) {
      // Errechnet Koordinaten, um das Popup zentriert zu platzieren
      links = (screen.width/2)-(breite/2);
      oben = (screen.height/2)-(hoehe/2);
      window.open(url,"popup","height="+hoehe+",width="+breite+",status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
   } 
