    function positionFooter()
    {
        var heightContent = 0;

        // Get biggest column height by checking left, middle and right column
        if (document.getElementById('indhold'))
        {
            heightContent = document.getElementById('indhold').offsetHeight;
        }
		alert('heightContent = ' +  heightContent);
		
        if (document.getElementById('kontakt'))
        {
            heightContent = document.getElementById('kontakt').offsetHeight > heightContent ? document.getElementById('kontakt').offsetHeight : heightContent;
        }
		alert('heightContent = ' +  heightContent);
		//if (heightContent > 320) {
         //  var hcDiff = heightContent - 320;
         //heightContent =  heightContent - 190;
		//}
        // Is there an element with the ID "footer"?
        if (document.getElementById('footer'))
        {
            // IE or not IE?
            if (navigator.userAgent && navigator.userAgent.indexOf("MSIE") >= 0)
            {
                document.getElementById('footer').style.setAttribute('top', heightContent + 'px');
            }
            else
            {
                document.getElementById('footer').style.setProperty('top', heightContent + 'px', null);
            }
        }
    }