<!--
function openimg( imgsrc, x, y )
  {
    var newwindow
    var xwinsize = x + 40
    var ywinsize = y + 30
    
    if ( xwinsize > screen.width - 20 )
      {
        xwinsize = screen.width - 20
      }
    if ( ywinsize > screen.height - 80 )
      {
        ywinsize = screen.height - 80
      }
    newwindow = window.open( "", "", "tollbar=no, location=no, directories=no, status=yes, " +
    "menubar=no, scrollbars=yes, resizable=yes, width=" + xwinsize + ", height=" + ywinsize )
    newwindow.document.write('<HTML><HEAD><TITLE>Biuro Karier Studenckich - powiększenie zdjęcia</TITLE></HEAD>' +
    '<BODY><IMG BORDER="0" SRC="' + imgsrc + '" width="' + x + '" height="' + y + '"><BODY></HTML>')
    newwindow.document.close()
    newwindow.focus()
  }
//-->
