<!--
var CMinContHeight = 440;

function setContentMinHeight() {
    	var divContent = document.getElementById('divContent');
	if (divContent.offsetHeight < CMinContHeight) {
	  divContent.style.height = CMinContHeight;	
    	  var divBottomPos = document.getElementById('divBottomPos');
    	  if (divBottomPos != null) {
    	    divBottomPos.style.top = CMinContHeight-4;
    	  }
    	}
}
//-->