var newsfenster;
function openWindow(name,w,h) {
		winspez =	"toolbar=0,";
		winspez	+=	"location=0,";
		winspez	+=	"directories=0,";
		winspez	+=	"status=0,";
		winspez	+=	"menubar=0,";
		winspez	+=	"scrollbars=0,";
		winspez	+=	"resizable=1,";
		winspez	+=	"width="+w+",";
		winspez	+=	"height="+h;

		newsfenster = window.open(name,'fenster',winspez);
		newsfenster.focus();
}

