function displayFlash(swf, hauteur, largeur, alternatif)
{
	document.write('<object type="application/x-shockwave-flash" data="'+swf+'" width="'+hauteur+'" height="'+largeur+'">');
	document.write('<param name="allowScriptAccess" value="sameDomain" />');
	document.write('<param name="movie" value="'+swf+'" />');
	document.write(alternatif);
	document.write('</object>');
}



function affiche_contact(ref,nb)
  {
	var nom_div1='contact' + nb;
	var cont_div1='<iframe border="0" frameborder="0" width="250" height="123" marginwidth="1" marginheight="1" align="center" src="modules/contact/rappel.php?ref='+ ref +'&nb='+ nb +'"></iframe>';

    document.getElementById(nom_div1).innerHTML=cont_div1;
    document.getElementById(nom_div1).style.visibility="visible";
  }

function ferme_contact(nb)
  {
 var nom_div1='contact' + nb;
document.getElementById(nom_div1).style.visibility="hidden";
}

function XHConn()
{
  var xmlhttp, bComplete = false;
  try { xmlhttp = new ActiveXObject("Msxml2.XMLHTTP"); }
  catch (e) { try { xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); }
  catch (e) { try { xmlhttp = new XMLHttpRequest(); }
  catch (e) { xmlhttp = false; }}}
  if (!xmlhttp) return null;
  this.connect = function(sURL, sMethod, sVars, fnDone)
  {
    if (!xmlhttp) return false;
    bComplete = false;
    sMethod = sMethod.toUpperCase();

    try {
      if (sMethod == "GET")
      {
        xmlhttp.open(sMethod, sURL+"?"+sVars, true);
        sVars = "";
      }
      else
      {
        xmlhttp.open(sMethod, sURL, true);
        xmlhttp.setRequestHeader("Method", "POST "+sURL+" HTTP/1.1");
        xmlhttp.setRequestHeader("Content-Type",
          "application/x-www-form-urlencoded");
      }
      xmlhttp.onreadystatechange = function(){
        if (xmlhttp.readyState == 4 && !bComplete)
        {
          bComplete = true;
          fnDone(xmlhttp);
        }};
      xmlhttp.send(sVars);
    }
    catch(z) { return false; }
    return true;
  };
  return this;
}


function affiche (url,requete,include)
{

var myConn = new XHConn();
if (!myConn) alert("XMLHTTP non disponible.");
var cacharge = function (oXML) { document.getElementById(include).innerHTML = oXML.responseText; };

document.getElementById(include).innerHTML = "<center><img src='themes/images/loading.gif' /></center>";
myConn.connect(url, "GET", requete, cacharge);


}

