tabfix=function()
{
	//Populate the array with all the page tags  
	var allPageTags=document.getElementsByTagName("*");  
	//Cycle through the tags using a for loop  
	for (i=0; i<allPageTags.length; i++) 
	{  
		//Pick out the tags with our class name  
		if (allPageTags[i].className=="tabsTabContent") 
		{  
			//Manipulate this in whatever way you want  
			allPageTags[i].style.height='auto';  
		}
	}
}
addLoadAction(tabfix);


navigateurTest=function()
{
	if (window.ActiveXObject)  
	{
		//Populate the array with all the page tags  
		var allPageTags=document.getElementsByTagName("*");  
		//Cycle through the tags using a for loop  
		for (i=0; i<allPageTags.length; i++) 
		{  
			//Pick out the tags with our class name  
			if (allPageTags[i].className=="ilesDM_Center1") 
			{  
				//Manipulate this in whatever way you want  
				allPageTags[i].style.paddingRight = "0px";
			}
		}	
		//document.getElementById("ilesDM_Center1").style.paddingRight = "0px";
	}
}
addLoadAction(navigateurTest);