function SupprimerDotted()
		{
		var liste;
		liste=document.getElementsByTagName("DIV");
		for (var i=0; i<liste.length; i++) 
		{
			if( liste[i].innerHTML.indexOf("#a9a9a9") != "-1")
			{
			liste[i].innerHTML= liste[i].innerHTML.replace("table {BORDER-RIGHT: #a9a9a9 1px dotted; BORDER-TOP: #a9a9a9 1px dotted; BORDER-LEFT: #a9a9a9 1px dotted; BORDER-BOTTOM: #a9a9a9 1px dotted}"," ");
			liste[i].innerHTML= liste[i].innerHTML.replace("TR {BORDER-RIGHT: #a9a9a9 1px dotted; BORDER-TOP: #a9a9a9 1px dotted; BORDER-LEFT: #a9a9a9 1px dotted; BORDER-BOTTOM: #a9a9a9 1px dotted}"," ");
			liste[i].innerHTML= liste[i].innerHTML.replace("TD {BORDER-RIGHT: #a9a9a9 1px dotted; BORDER-TOP: #a9a9a9 1px dotted; BORDER-LEFT: #a9a9a9 1px dotted; BORDER-BOTTOM: #a9a9a9 1px dotted}"," ");
			}
		}
		}
SupprimerDotted();