function fenster(path,w,h)
{	
detail=window.open(path,"detail","width="+w+",height="+h+",top=100, left=100, scrollbars=yes,resizable=yes,location=no,menubar=no,status=no,toolbar=no");
detail.resizeTo(w,h);
detail.focus();
}
