/*==================================================================================================================
//===(  Copyright 2005 Atomprod  -  Author Alain Chalet <ach@atomprod.com> & Patrice Bridoux <pjb@atomprod.com> )===
//================================================================================================================*/




/*================================================================================================================*/

function changevideo(n,w,h,x)
{  

var FO = { movie:'img/video/mediaplayer.swf',width:""+w+"",height:""+h+"",majorversion:"7",build:"0",bgcolor:"#FFFFFF",
flashvars:"image=img/video/"+n+".jpg&file="+n+".flv&showdigits=true&autostart=false" };
UFO.create( FO, "player"+x );

}

function changevideo2()
{  

 var req = null;
  if(window.XMLHttpRequest)  req = new XMLHttpRequest(); // Firefox, Safari, ...
  else
    if (window.ActiveXObject)  req = new ActiveXObject(Microsoft.XMLHTTP); // Internet Explorer 

  req.onreadystatechange = function()
  {
    if(req.readyState == 4) // reçu, OK
    {
       if(req.status == 200)
           document.ajax.dyn="Received:" + req.responseText;
       else
           document.ajax.dyn="Error code " + req.status;
  };

  /*
  req.open( GET", "data.xml", true);
  req.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");  
  req.send(null);
  */

} 


}


/*================================================================================================================*/

function hover(obj)
{  
   if(document.all)
   {    
     UL = obj.getElementsByTagName('ul');
     if(UL.length > 0)
     {      
       sousMenu = UL[0].style;
       if (sousMenu .display == 'none' || sousMenu.display == '') { sousMenu.display = 'block'; }
       else { sousMenu.display = 'none'; }
     }
   }
}

/*================================================================================================================*/

function setHover(menu)
{  
  LI = document.getElementById(menu).getElementsByTagName('li'); 
  nLI = LI.length;  
  for (i=0; i < nLI; i++) { LI[i].onmouseover = function() { hover(this);}; LI[i].onmouseout = function() { hover(this);} }
}

/*================================================================================================================*/

function select(n)
{
  var  d2 = document.getElementById('sct'+n);  d3 = document.getElementById('cl'+n); 
  if  (d2.className == 'nosct') {d2.className = 'sct'; eval('document.formulaire.coul'+n+'.checked = true');}
  else                          {d2.className = 'nosct'; eval('document.formulaire.coul'+n+'.checked = false');}

}

/*================================================================================================================*/
function twPopupImage(img, titre, auteur, h, w) {
  // Compatible IE5+ / NN6+ / Mozilla
  oFenetre = window.open('','Image','width='+w+',height='+h+',toolbar=no');
 oFenetre.document.write("<html><head><title>"+titre+"</title></head>");
 oFenetre.document.write("<body leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
 oFenetre.document.write("<table width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td valign='middle' align='center'>");
 oFenetre.document.write("<img src='"+img+"' border='0' alt='"+auteur+"' title='"+auteur+"' onclick='javascript:oFenetre.document.close();'>");
 oFenetre.document.write("</td></tr></table></body></html>");
 /*/oFenetre.document.close();*/
} 
