function newWindow(name, url, width, height)
{
		url=url.replace("#","%23");
		fensterone=window.open(url, name, "toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",screenX=50,screenY=50");
		fensterone.focus();
}

