function openPopup(src, width, height) {
	var win = window.open(src, "Fenster1", "width=" + width + ", height=" + height + ", left=0,top=0,scrollbars=yes,resizable=yes,status=yes" );
	
	if (typeof(win) == "object") {
		return false;
	}
}