
function neuesFenster(w,h) {
	if (w == undefined) {
		var w = "820";
	}
	if (h == undefined) {
		var h = "650";
	}
	eval ("neu=window.open('','newWindow','location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+"');");
	neu.focus();
}

function neuesFensterOhne(w,h) {
	if (w == undefined) {
		var w = "820";
	}
	if (h == undefined) {
		var h = "650";
	}
	eval ("neu=window.open('','newWindow','location=no,status=no,menubar=no,toolbar=no,scrollbars=no,resizable=no,width="+w+",height="+h+"');");
	neu.focus();
}

function popup(destination,w,h) {
	eval ("neu=window.open(destination,'newWindow','location=no,status=no,menubar=no,toolbar=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+"');");
	neu.focus();

}
