// JavaScript Document

/*random des photos de marseille sur la home page*/
function hp()
{
    document.write('<img src="images/random_homepage/image'+ Math.round((Math.random()*3)+1)+ '.jpg" class="image-gauche" />');
}


/*random des interviewés dans la home page en français*/
function go(a)
{
  if (a=="1"){window.location="temoignage-allard-delanoe.htm"}
  if (a=="2"){window.location="temoignage-berge.htm"}
  if (a=="3"){window.location="temoignage-bigay.htm"}
  if (a=="4"){window.location="temoignage-boucaud.htm"}
  if (a=="5"){window.location="temoignage-foulquie.htm"}
  if (a=="6"){window.location="temoignage-guyot.htm"}
  if (a=="7"){window.location="temoignage-hubinet.htm"}
  if (a=="8"){window.location="temoignage-koutchouk.htm"}
  if (a=="9"){window.location="temoignage-maurice.htm"}
  if (a=="10"){window.location="temoignage-nataf.htm"}
  if (a=="11"){window.location="temoignage-patin.htm"}
  if (a=="12"){window.location="temoignage-richard.htm"}
  if (a=="13"){window.location="temoignage-rodon.htm"}
  if (a=="14"){window.location="temoignage-segonzac.htm"}
}

function pub()
{
  a = Math.round((Math.random()*13)+1);
  document.write('<a href="javascript:go(a)" class="lienimage">');
  document.write('<img src="images/itw_fr/image'+ a+ '.jpg" width="283" height="248" border="0" />');
  document.write('</a>');
}




/*random des interviewés dans les pages en français sauf home page*/
function go(c)
{
  if (c=="1"){window.location="temoignage-allard-delanoe.htm"}
  if (c=="2"){window.location="temoignage-berge.htm"}
  if (c=="3"){window.location="temoignage-bigay.htm"}
  if (c=="4"){window.location="temoignage-boucaud.htm"}
  if (c=="5"){window.location="temoignage-foulquie.htm"}
  if (c=="6"){window.location="temoignage-guyot.htm"}
  if (c=="7"){window.location="temoignage-hubinet.htm"}
  if (c=="8"){window.location="temoignage-koutchouk.htm"}
  if (c=="9"){window.location="temoignage-maurice.htm"}
  if (c=="10"){window.location="temoignage-nataf.htm"}
  if (c=="11"){window.location="temoignage-patin.htm"}
  if (c=="12"){window.location="temoignage-richard.htm"}
  if (c=="13"){window.location="temoignage-rodon.htm"}
  if (c=="14"){window.location="temoignage-segonzac.htm"}
}

function puc()
{
  c = Math.round((Math.random()*13)+1);
  document.write('<a href="javascript:go(c)" class="lienimage">');
  document.write('<img src="../images/random_fr/image'+ c+ '.jpg" width="240" height="248" border="0" />');
  document.write('</a>').className="lienimage";
}


