function initButtons( sDivScroller )
{
// 	if ( ! document.getElementById(sDivScroller) )
// 		return false;
	var iTailleOccupee = document.body.clientHeight; 
	var iTailleEcran = 0; 
	if( typeof( window.innerHeight ) == 'number' ) 
	{ 
		iTailleEcran = window.innerHeight;
	} else if( document.documentElement && document.documentElement.clientHeight ) 
	{
		iTailleEcran = document.documentElement.clientHeight;
	} else if( document.body && document.body.clientHeight ) 
	{
		iTailleEcran = document.body.clientHeight;
	}
	document.getElementById(sDivScroller).style.height = (iTailleEcran-50)+'px';

	/*if ( iTailleOccupee <= iTailleEcran )
	{
		document.getElementById(sDivScroller).style.display= "none" ;
	}*/

	//elargissement de la zone de selection de produits (ie seulement, ff elargit la zone comme prevu)
// 	if ( ! (oDivSelection = document.getElementById("selection_contenu")) )
//  		return false;
// 
// 	var ie=document.all;
// 	if(ie){
// 		var iTailleOccupee = document.body.clientWidth;
// 		var iTailleEcran = 0;
// 		if( typeof( window.innerWidth ) == 'number' ) {
//  			iTailleEcran = window.innerWidth;}else if( document.documentElement && document.documentElement.clientWidth ) {
//  			iTailleEcran = document.documentElement.clientWidth;
// 		}
//  		else if( document.body && document.body.clientWidth ){
// 		 	iTailleEcran = document.body.clientWidth;
// 		}
// 		oDivSelection.style.width=iTailleEcran-495+'px';
// 	}else{
// 		oDivSelection.style.width='';
// 		oDivSelection.style.overflow='';
// 	}
// 	oDivSelection.style.display='block';
}
