/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */


var pop = null;

function popdown() {
	if (pop && !pop.closed) pop.close();
}

function MovieOeffnen(movie_file){
	var h = Math.floor(((screen.availHeight)-270)/2);
	var w = Math.floor(((screen.availWidth)-340)/2);
	
	pop=window.open(this.href,'_blank', 'scrollbars=no, resizable=no, toolbar=no, directories=no, location=no, menubar=no, status=no, width=340, height=270, screenX='+w+',screenY='+h);

	pop.document.open();

	pop.document.write('<html><body><embed type="video/quicktime" scale="tofit" width="320" height="250" src="/movie/'+movie_file+'" autoplay="true"></embed></body></html>');

	pop.document.close();
}

