function SymError() {
  	return true;
	}
window.onerror = SymError;

function Fensterbild(url,breite,hoehe,f_width,f_height,name){
  var winname = "win";
  var x=0;
  var y=0;
  if(name != '') winname = name;
  windowisopen = false;
   eval("if(window." + winname + " && window." + winname + ".closed==false) { windowisopen = true\; }");
  if(!windowisopen) {
    if(screen.width > 640)
    	{
    	x = (screen.availWidth  - breite) / 2;
    	y = (screen.availHeight - hoehe) / 2;
    	}
  	}
   doc=window.open("", "fenster", "width="+f_width+",height="+f_height+",top="+y+",left="+x+",menubar=0,status=0,scrollbars=0");
   doc.document.open("text/html");
   doc.document.write('<html><title>Glebbe 11a - '+name+'</title><body bgcolor=#edf2f2>');
   doc.document.write('<p align=center><img src="'+url+'" width="'+breite+'" height="'+hoehe+'" onClick=window.close()>');
   doc.document.write('</p></body></html>');
   doc.document.close();
   doc.focus();
   
  }
