function popup(title,url,width,height) {
 fenster = window.open(url, 
 					   title, 
 					   "width=" + width +
 					   ",height=" + height +
 					   "status=no " +
 					   ",scrollbars=no " +
 					   ",resizable=no");
 fenster.focus();
 
}
