// UTF 8 Sans Bom - Accent : é
function Attente3()
{
/*
	// Erase old content of id=attente
    var node = document.getElementById("attente");
    var parent = node.parentNode;                
    parent.removeChild(node);
    //Add new content in id=attente
    var image = document.createElement('img');
    image.setAttribute('src','pic/attente.gif');
	image.setAttribute('alt','Merci de patienter...');
	parent.appendChild(image);
	
	// Erase old content of id=invisible (si deux bouton par exemple)
    var node2 = document.getElementById("invisible");
    var parent2 = node2.parentNode;                
    parent2.removeChild(node2);
	
	return true ;
*/

	var storing = document.getElementById("attente3") ;
	storing.innerHTML = "<span class=\"patiente3\">Please wait<span id=\"dotted0\"></span></span>" ;

	add_dot(0) ;
	
	return true ;
}