function Resize() {
	$('.ContentWrapper').css('height', '');
	if ($('#Form').height() < $(window).height()) {
		var WindowH = $(window).height();
		var PageH =	$('#Form').height();
		var Difference = WindowH - PageH;
		var ContentH = $('.ContentWrapper').height();
		$('.ContentWrapper').css('height', Difference + ContentH);
	}
}

// RESIZE ON PAGE LOAD
$(window).load(function(){ Resize(); });

// RESIZE ON PAGE RESIZE
$(window).resize(function(){ Resize(); });

// RESIZE WHEN ON MODULE COLLAPSE
$('.VisibilityBox a').click(function(){ Resize(); });
