<!-- <![CDATA[
function sprawdz(t) {

  if (!t.email.value.match(/^[0-9a-z_.-]+@([0-9a-z-]+\.)+[a-z]{2,6}$/)) {
    alert("Podaj poprawny adres e-mail!");
    t.email.focus();
    return false;
  }
  return true;
}

// ]]> -->

function pokaz_projekt(fota, szer, wys, tytul)
{

szer = 1100;  
wys = 700;
tytul = "Przyszlosc - Piotr Wysocki";

var okno = window.open("", "", "menubar=no,toolbar=no,location=no,directories=no,status=no,resizable=yes,scrollbars=yes" + (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' +
    

    '<img src="' + fota + '">' +

    '<'+'/body>\n' +
    '<'+'/html>');

  okno.document.close();

  return false;
}

