function popupWithScroll(url, width, height) {
        var Win2 = window.open(url,"newokno",'width=' + width + ',height=' + height + ',resizable=0,scrollbars=yes,menubar=no,top=10,left=10' );
}



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") == "external")
anchor.target = "_blank";
}
}



function allBlur() {
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.onfocus = function(){this.blur();};
}
} 


function zaladujFunkcje() {
externalLinks(); 
allBlur();
}


window.onload = zaladujFunkcje; 