function PopUp(URI,B,H,TI,HG,INFO,L)
{
var eigensch, text
eigensch="left=20,top=15,width="+(B+30)+",height="+(H+65);
text="<html><head><title>"+TI+"</title></head><body style='text-align:center' bgcolor='"+HG+"'";
text+="><img src='"+URI+"' title='"+INFO+"'>";
text+="<form style='margin:14px;'><input type='button'";
if(L=="D")
{
  text+=" value='Fenster schliessen' ";
}
else
{
  text+=" value='close window' ";
}
text+="name='B1' onclick='self.close()'></form>";
text+="</body></html>";
fenster=window.open("about:blank","fenster",eigensch);
fenster.document.open();
fenster.document.write(text);
fenster.focus();
fenster.document.close();
}