/*

function sendDataMessagePublic(typeTransaction, fichierUrl, boolOpen)
{

	var xmlhttp=false;
	var retour='';
	

	//------------------------------------------------------
	

	// JScript gives us Conditional compilation, we can cope with old IE versions.
	// and security blocked creation of the objects.
	 try {
	  xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
	 } catch (e) {
	  try {
	   xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
	  } catch (E) {
	   xmlhttp = false;
	  }
	 }

	
	//------------------------------------------------------
	
	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
	  xmlhttp = new XMLHttpRequest();
	}

	xmlhttp.open(typeTransaction, fichierUrl,boolOpen);
	 xmlhttp.onreadystatechange=function() {
	 var data;
	  if (xmlhttp.readyState==4) {
		retour = xmlhttp.responseText;
		data = retour;
		
		
		if (data == "OK")
		{
			document.getElementById('box').style.display ='none';
		}
		
	  }
	 }
	 	 
	 xmlhttp.send(null);

	 return retour;
 }
 
 */
 