function foto(url, width, height, opis) 
{ 
height=height+29
okno2=window.open('',"Galeria",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=no,menubar=no');
okno2.document.write('<html><head><title>Gospodarstwo Agroturystyczne "Karczak"</title></head><body bgcolor=#FFFFFF topmargin=0 leftmargin=0>');
okno2.document.write('<img src="' + url + '">');
okno2.document.write('<div style="CLEAR:both;MARGIN-TOP:3px;DISPLAY:block;MARGIN-BOTTOM:3px;WIDTH:100%;COLOR:#006400;POSITION:relative;BACKGROUND-COLOR:White;TEXT-ALIGN:center;font-size:10px;font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;height:34px;">' + opis + '</div>');
okno2.document.write("</body></html>");
}

function OpenWin(URL, winName, width, height, scroll)
 {
 var winLeft = (screen.width - width)/2;
 var winTop = (screen.height - height)/2;
 winData = 'height='+height+',width='+width+',top='+winTop+',left='+winLeft+',scrollbars='+scroll+',resizable';
 win = window.open(URL, winName, winData);
 if (parseInt(navigator.appVersion) >= 4) win.window.focus();
 }



function nLink(URL)
 {
 win = window.open(URL);
 if (parseInt(navigator.appVersion) >= 4) win.window.focus();
 }



function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "noweokno")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;
