function swf_accueil(tWidth, tHeight){  document.write('<object type="application/x-shockwave-flash" data="images/swf/accueil.swf" width="'+tWidth+'" height="'+tHeight+'">\n');  document.write('<param name="movie" value="images/swf/accueil.swf" />\n');  document.write('</object>\n');}

function swf_contact(tXml)
{
  document.write('<object type="application/x-shockwave-flash" data="images/swf/contact.swf" width="600" height="450">\n');
  document.write('<param name="movie" value="images/swf/contact.swf" />\n');
  document.write('<param name="FlashVars" value="fichier='+tXml+'" />\n');
  document.write('</object>\n');
}

function verifieChamp()
{
  if (document.forms[0].nom.value.length == 0)
  {
    alert("Veuillez indiquer votre nom");
    return false;
  }
  if (document.forms[0].entreprise.value.length == 0)
  {
    alert("Veuillez indiquer le nom de votre entreprise");
    return false;
  }
  if (document.forms[0].tel.value.length == 0)
  {
    alert("Veuillez indiquer votre numero de telephone");
    return false;
  }
  if (document.forms[0].email.value.length == 0)
  {
    alert("Veuillez indiquer votre adresse email");
    return false;
  }

  var a=document.forms[0].email.value;
  var test="" + a;
  for(var k = 0; k < test.length;k++)
  {
    var c = test.substring(k,k+1);
    if(c == "@")
    {
      return true;
    }
  }
  alert("Veuillez indiquer une adresse email valide");
  return false;
}
