
function HtmlAnzeigen(url, title, width, height)
{
	options = "width="+width+",height="+height+",left=5,top=5,scrollbars=yes,resizeable=no,toolbar=no,status=no,menubar=no,null,null";

	HtmlFenster = window.open(url, title, options);
	HtmlFenster.focus();

}