function openWindow (url, width, height) {
var ZoomInWindow = window.open("","displayWindow",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no');
with(ZoomInWindow.document) {
writeln('<html><head><title>wirelesslan.com.pl</title></head>')
writeln('<body topmargin=0 bottommargin=0 leftmargin=0 rightmargin=0 marginheight=0 marginwidth=0 onBlur="window.close();">')
writeln('<img src="' + url + '" alt="">')
writeln('</body></html>');
void(close());};
};

