/*==================================================================================================================
//===(  Copyright 2005 Atomprod  -  Author Alain Chalet <ach@atomprod.com> & Patrice Bridoux <pjb@atomprod.com> )===
//================================================================================================================*/

/*================================================================================================================*/

function fl_bl_ov()
{  
  document.getElementById('flBLtxt').className   = 'flBLtov';
  document.getElementById('fl-BL').style.width   = 'auto';
  document.getElementById('fl-BL').style.height  = 'auto';
}

function fl_bl_out()
{  
  document.getElementById('flBLtxt').className   = 'flBLtou';
  document.getElementById('fl-BL').style.width   = '12px';
  document.getElementById('fl-BL').style.height  = '18px';
}

/*================================================================================================================*/
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();*/
} 
