function ShowPic(url,title,width,height)
{
  var fenster=window.open("","Picture","height="+height+",width="+width);
  fenster.document.open();
  fenster.document.writeln("<HTML>");
  fenster.document.writeln("<HEAD>");
  fenster.document.writeln("<TITLE>"+title+"</TITLE>");
  fenster.document.writeln("</HEAD>");
  fenster.document.writeln("<BODY MARGINWIDTH='0' MARGINHEIGHT='0' LEFTMARGIN='0' RIGHTMARGIN='0' TOPMARGIN='0' onBlur='window.close();'>");
  fenster.document.writeln("<IMG SRC='"+url+"' ALT='"+title+"'>");
  fenster.document.writeln("</BODY>");
  fenster.document.writeln("</HTML>");
  fenster.document.close();
}

