function resize()
{
	var corps = document.getElementById( 'corps' );
	var heightCorps = parseInt( corps.scrollHeight );
	var contenu = document.getElementById( 'contenu' );
	var heightContenu = parseInt( contenu.scrollHeight );
	var contenuScroll = document.getElementById( 'contenu-scroll' );
	var heightContenuScroll = parseInt( contenuScroll.scrollHeight );
	
	var heightBody = parseInt( document.body.clientHeight );
	height = heightBody;
	
	if( heightBody < 600 )
	{
		height = 600;
	}
	
	// if( heightContenuScroll <= 322 ) // 600 - 278
	// {
		// corps.style.height   = '322px';
		// contenu.style.height = '322px';
	// }
	// else if( heightContenuScroll <= height - 278 )
	// {
		// corps.style.height   = heightContenuScroll + 'px';
		// contenu.style.height = heightContenuScroll + 'px';
	// }
	// else
	// {
		// corps.style.height   = ( height - 278 ) + 'px';
		// contenu.style.height = ( height - 278 ) + 'px';
	// }
	
	// var Expression = new RegExp( 'MSIE 6.0' );
	
	// if( navigator.appName == 'Microsoft Internet Explorer' && Expression.test( navigator.appVersion ) )
	// {
		// var diff = 298;
	// }
	// else
	// {
		// var diff = 278;
	// }
	
	corps.style.height   = ( height - 278 ) + 'px';
	contenu.style.height = ( height - 278 ) + 'px';
}


