function popup(URL, Titel, width, height){
	var param = "left=50,top=50,resizeable=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,toolbars=0";
	param = param + ",width=" + width +",height=" + height;
	window.open(URL, Titel,param);
}
