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' );
}

/*############################ link external #######################*/	
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";
}
}
/*###################################################################*/	
/*############################ no spam email ########################*/	

function nospam() {
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")=="mail")
anchor.href = anchor.getAttribute("href").replace('(at)','@');
}
}
/*###################################################################*/	
/*############################ link blur  ###########################*/	
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();
nospam();
}


window.onload = zaladujFunkcje; 













