// JavaScript Document
function findLivePageHeight() { // Retourne la hauteur du document
	if (window.innerHeight != null)
		return window.innerHeight;
	if (document.body.clientHeight != null)
		return document.body.clientHeight;
	return (null);
}
function findLivePageWidth() { // Retourne la largeur du document
	if (window.innerWidth != null)
		return window.innerWidth;
	if (document.body.clientWidth != null)
		return document.body.clientWidth;
	return (null);
}
function resizeContent(){
	var c = document.getElementById('content');
	c.style.height = (findLivePageHeight()-204) + 'px';
	c.style.width = (findLivePageWidth()) + 'px';
}
