function imgResize(e)
{
e.parentNode.style.height = '75px';
e.parentNode.style.width = '75px';
e.parentNode.style.overflow = 'hidden';
e.parentNode.style.border = '1px solid #C0C0C0';
}

function imgNewWindow(path)
{
w = window.open('','img','width=600,height=500,scrollbars=none,status=none,menubar=none');
w.document.open();
w.document.writeln('<html>');
w.document.writeln('<body style="background-color:#000000">');
w.document.writeln('<table border="0" width="100%" height="100%"><tr><td style="text-align:center"><img src="/__krakow/lokale/'+path+'" style="border:1px solid #808080"></td></tr></table>');
w.document.writeln('</body>');
w.document.writeln('</html>');
w.document.close();
w.focus();
}
