function columnsWithoutTables() {

	
	var columnOne = document.getElementById("news");
	var columnTwo = document.getElementById("dobroczyncy");
	var footer = document.getElementById("footer");
		
	

	var columnOneHeight = columnOne.offsetHeight-2;
	var columnTwoHeight = columnTwo.offsetHeight;
	
	
	
	if (columnOneHeight > columnTwoHeight) 
	{
		columnTwo.style.height = columnOneHeight + "px";
		footer.style.top = (columnOneHeight + 374) + "px";
	} 
	else 
	{
		columnOne.style.height = columnTwoHeight + "px";
		footer.style.top = (columnTwoHeight + 374) + "px";
	}
	
	
}


