function openvideo(url) {
	breite = 515;
	hoehe = 375;
	links = (screen.width/2)-(breite/2);
	oben = (screen.height/2)-(hoehe/2);

	if(url.indexOf("//") < 0)
		url = "//" + url;
	if(url.toLowerCase().indexOf("http:") != 0)
		url = "http:" + url;
	if (url.indexOf ("http://www.filmmakers.de") == 0)
		window.open(url,"popup","height="+hoehe+",width="+breite+", status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = yes,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links);
	else
		top.window.open("redirect.php5?"+url,"video","height=600,width=800,toolbar=no,location=no,status=no,menubar=no,resizable=yes,directories=no,scrollbars=yes");
}
