function resizePage(value) {
		        
	var siteContent = document.getElementById("siteContent");
				
	if (value < 560) {
		value = 600;
	} else {
		value += 40;
	}
				
	siteContent.style.height = value + "px";
        
}

function resizePageStatic() {
		        
	var htmlContainer = document.getElementById("htmlContainer");
	
	var value = htmlContainer.offsetHeight;
				
	if (value < 560) {
		value = 600;
	} else {
		value += 40;
	}
				
	htmlContainer.style.height = value + "px";
        
}