<!--
// news.js
// (c)BEP CONCEPT - FRANCE
// Eric Pasquier
//----------------------------

//==========================
// newsOnFocus
//--------------------------
function newsOnFocus(PForm)
{       
  var tag="votre email";
  var input = PForm.email;
  
  if (input) {
    if (input.value == tag) {
      input.value = "";
      input.style.color = "#000000";
    }
  }
  
  return true;
}
//-->

