function getDocHeight() {
    var D = document;
    return Math.max(
        Math.max(D.body.scrollHeight, D.documentElement.scrollHeight),
        Math.max(D.body.offsetHeight, D.documentElement.offsetHeight),
        Math.max(D.body.clientHeight, D.documentElement.clientHeight)
    );
}

function fixHeight() {
	//alert(document.getElementById("content").style);
	blaat = document.getElementById("container").style;
	blaat.display = "block";
	blaat.height = "" + (getDocHeight()-100) + "px;";
//	alert(blaat.width);
}

window.onload = function() {
	//fixHeight();
}


