function divSize() {
	winH = document.body.offsetHeight;
	totalHeight = document.getElementById('container').offsetHeight;
	if(winH > totalHeight) {
	document.getElementById('container').style.height=winH + "px";
}
window.onresize = function() {
divSize();
}