	function openwindow (url, wndname, width, height) 
	{
		strparam = "width=" + width + ",height=" + height + ",status=yes,scrollbars=no,resizable=no";
		fenster = window.open(url,'',strparam);
		fenster.focus();
	}
