// Funktion zum Öffnen eines Popupfensters
var msgWindow;
function openWindow(newWindowURL, w, h,scroll,id) {
	if (scroll=='') scroll=0;
	var width=w, height=h;
	var left = (screen.width/2) - width/2;
	var top = (screen.height/2) - height/2;
	var styleStr = 'toolbar=no,location=no,directories=no,status=1,menubar=no,scrollbars='+scroll+',resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
	if (msgWindow != undefined ) msgWindow.close();
	msgWindow = window.open(newWindowURL+id,id,styleStr);
	msgWindow.focus();
}

//Funktion für die Statusanzeige
var bin_da = 100;
function open_upload_window( add_url ){
	bin_da = 1;
	openWindow( add_url + '_inc/status.php',280,160,0,'');
}