
//Wyswietlanie obrazkow
function displayWindow(width, height,gfxsrc, tekst,iw,ih) {
   var Win = window.open("","",'width=' + width + ',height=' + height + ',resizable=no,scrollbars=no,menubar=no,toolbar=no,location=no,directories=no,status=no,fullscreen=no,channelmode=no');
   Win.document.open();   
   Win.document.write('<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\">');
   Win.document.write('<html xmlns=\"http://www.w3.org/1999/xhtml\" lang=\"pl\" xml:lang=\"pl\">');
   Win.document.write('<head>');
   Win.document.write('<style type=\"text/css\">');
   Win.document.write('/* <![CDATA[ */');
   Win.document.write('a {font-size:10px; text-decoration: none; font-weight:bold;}');
   Win.document.write('a:link {color:#FF9933;}');
   Win.document.write('a:visited {color:#FF9933;}');
   Win.document.write('a:hover {color:#FF9933; text-decoration: none;}');
   Win.document.write(' /* ]]> */');
   Win.document.write('</style>');
   
   Win.document.write('<meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-2\" />');
   Win.document.write('<meta name=\"Description\" content=\"Witryna firmy CTA\" />');
   Win.document.write('<title>Obraz</title>');
   Win.document.write('</head>');   
   Win.document.write('<body style=\"background-color:#000000;\">');
   Win.document.write('<div style=\"text-align:center; font-family: Verdana, Tahoma, \'Times New Roman\', Arial; font-size: 12px; color:#ffffff; font-weight:bold\">');
   Win.document.write('<p><img src=\"'+gfxsrc+'\" width=\"'+iw+'\" height=\"'+ih+'\"></p>');
   Win.document.write('<p>'+tekst+'</p>');
   Win.document.write('<p><a href=\"javascript:window.close();\">Zamknij</a></p');
   Win.document.write('</div>');
   Win.document.write('</body>');
   Win.document.write('</html>');
   Win.document.close();

}

// Poczta

function poczta(uzyt,dom) {
document.write('<a  href=\"mailto:' + uzyt + '%40' + dom + '\">');
document.write('design & code');
document.write('</a>');
}
function poczta_1(uzyt,dom) {
document.write('<a  href=\"mailto:' + uzyt + '%40' + dom + '\">');
document.write(uzyt+'@'+dom);
document.write('</a>');
}
