// ------------------------------------------------------------------------------------------
// Video 4D - www.video4d.com - info@video4d.com
// Copyright © 2009 Video 4D, tous droits réservés - all rigthts reserved.
// 
// Ce script est prétégé par la loi ds Droits d'Auteur. Il est interdit de le copier, de
// l'altérer ou de l'utiliser sans l'accord formel de Video 4D.
// 
// This script is protected by the law of Copyright and is not to be copied, altered or used
// without the formal authorisation of Video 4D.
// ------------------------------------------------------------------------------------------

window.onload = function() {
	contentMainTableHeight();
}

window.onresize = function() {
	contentMainTableHeight();
}

function contentMainTableHeight() {
	var pgaeInHeight = document.documentElement.clientHeight;
	var topTable = document.getElementById("topMainTable");
	var topTableHeight = topTable.offsetHeight;
	var pageInHeightButBanner = pgaeInHeight - topTableHeight /*Table top*/ - 32 /*Legal Bottom*/;
	document.getElementById('bottomEmptyDivSeparator').style.height = pageInHeightButBanner + "px";
}


