<!-- Vignette V6 Fri Jan 20 03:37:08 2012 -->
//pour toggler entre transaction en ligne ouvert et ferme
function toggleTable(windowId1,windowId2,windowId3) {
	if (document.getElementById) { // DOM3 = IE5, NS6 
		if (document.getElementById(windowId1).style.display == 'block'){
			document.getElementById(windowId1).style.display = 'none';	
			document.getElementById(windowId2).style.display = 'block';		
			document.getElementById(windowId3).style.display = 'block';	
		}else{
			document.getElementById(windowId1).style.display = 'block';	
			document.getElementById(windowId2).style.display = 'none';	
			document.getElementById(windowId3).style.display = 'none';			
		}
	} 
}
