// FENSTER ÖFFNEN

function popup(url, name){
	paras = "toolbar = 0, menubar = 0, status = 0, resizable = 0, scrollbars = 0, directories = 0, width = 20, height = 20";
	window.open(url, name, paras);
}

function onOpenPopup (width, height) {
	self.resizeTo(width, height);
	self.focus();
}

