function wyswietl(fota, szer, wys, tytul)
{

szer = 600;  
wys = 676;
tytul = "Projektowanie stron internetowych - nPage.pl";

var okno = window.open("", "", "menubar=no,toolbar=no,location=no,directories=no,status=no,resizable=yes,scrollbars=no" + (szer ? ",width=" + szer : "") + (wys ? ",height=" + wys : ""));

  okno.document.write(


    '<html>\n' +
    '<head>\n' + 
    '<title>' + tytul + '<'+'/title>\n' +
    '<'+'/head>\n' +
    '<body' + ' style="margin: 0; padding: 0">\n' +
    

    '<a href="#" onClick="window.opener=null; window.close()"><img src="' + fota + '" style="border: 0px;" alt="zamknij"></a>' +

    '<'+'/body>\n' +
    '<'+'/html>');

  okno.document.close();

  return false;
}
