function toggle(targetId) {
if (document.getElementById){
target=document.getElementById( targetId );
if (target.style.display=="none") {
target.style.display="";
        } else {
        target.style.display="none";
        }
        }
        }

function obr(jaki,szer,wys,tytul) {
popup=window.open('about:blank','','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,fullscreen=no,channelmode=no,width='+szer+ ',height=' +wys+ ',top=100,left=100');
with(popup.document) { open();
write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html><head><title>'+tytul+ '<\/title><\/head><body style="margin:0;padding:0;border:0"><img src="'+jaki+ '" style="display:block;" alt="' +tytul+ '" /><\/body><\/html>');
close();
}
}