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 ustawWysokosc() {

	wys_odbierana_1 = document.getElementById("left_content_nopacity");
	wys_ustawiana_1 = document.getElementById("transBack_left_content");
	offsetHeight_1 = document.getElementById("left_content_nopacity").scrollHeight;
	
	wys_odbierana_2 = document.getElementById("right_content_nopacity");
	wys_ustawiana_2 = document.getElementById("transBack_right_content");
	offsetHeight_2 = document.getElementById("right_content_nopacity").scrollHeight;
	
	wys_odbierana_3 = document.getElementById("right_content_nopacity");
	wys_ustawiana_3 = document.getElementById("content");
	offsetHeight_3 = document.getElementById("right_content_nopacity").scrollHeight;	

	wys_ustawiana_1.style.height = offsetHeight_1 + "px";
	wys_ustawiana_2.style.height = offsetHeight_2 + "px";
	wys_ustawiana_3.style.height = offsetHeight_3 + 10 + "px";	
}



function zaladujFunkcje() {
allBlur();
ustawWysokosc();

}

window.onload = zaladujFunkcje; 
