
function open_pic(source,titel,x,y,text) {
  x=x+10
  y=y+26
  var popup = window.open("popup2.htm","popup","dependent=yes,location=no,menubar=no,scrollbars=no,status=no,toolbar=no,width="+x+",height="+y)
  popup.document.write("<html><head><title>"+titel+"</title></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' onload='focus()'>")
  popup.document.write("<img src='"+source+"'></td>")
  popup.document.write("</body></html>")
  popup.document.close()
  popup.resizeTo(x,y)
}
