  function sendAndLoad(load_from,send_into_id,$method,param){
  /* */ if(!document.all && window.XMLHttpRequest){var xmlhttp =  new XMLHttpRequest();xmlhttp.overrideMimeType('text/xml; charset=iso-8859-1');}
	if(window.ActiveXObject){ 
	
			 try { var xmlhttp =   new ActiveXObject("Msxml2.XMLHTTP");}
			 catch (e) {
			   try {var xmlhttp =   new ActiveXObject("Microsoft.XMLHTTP");}
			    catch (e) { } // try-catch
			 } // try-catch
      }	
  
      xmlhttp.open($method, load_from, true);
	  xmlhttp.onreadystatechange = function() {
          
				  if( xmlhttp.readyState!= 4){
					    
/*					    document.getElementById(send_into_id).innerHTML =' <div align="center"; style="height: 30px"> <img src="_images/loading.gif" /></div>';
*/	
					    document.getElementById(send_into_id).innerHTML =' <div align="center"; style="height: 30px">  CHARGEMENT EN COURS ...</div>';

				   }		  
		           if (xmlhttp.readyState == 4 && xmlhttp.status == 200) { 
                     
				 
					    response = xmlhttp.responseText;
						//alert(response+" deb ugging "+xmlhttp.readyState);
					    document.getElementById(send_into_id).innerHTML =  response;
					    
					    
				   }

				   
				  
        
         } 
		 if($method=='POST'){
		 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=8859-1');
		 }
		 xmlhttp.send(param);
/**/		 
}/*function getmessage(){
	
	
	}
function sendAndLoad($xmlFile,$target){
	if (window.ActiveXObject){
		xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
		xmlDoc.async=false;
		xmlDoc.load($xmlFile);
		  
	}
	// code for Mozilla, Firefox, Opera, etc.
	else if (document.implementation && document.implementation.createDocument){
		xmlDoc=document.implementation.createDocument("","",null);
		xmlDoc.load($xmlFile);
		 
	}
}

*/