function verif_email(lemail)
{
  var email     = lemail.value;
  var verif     = /^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]{2,}[.][a-zA-Z]{2,3}$/
  if (verif.exec(email) == null)
  {
    alert("Votre email est incorrecte, veuillez la ressaisir svp");
    return false;
  }
  else
  {
    return true;
  } 
}

function verif_mail()
{
  if (!verif_email(document.pass.S_EMAIL)) return false;
  document.pass.submit();
}

function clktop(id)	{
  window.location = '/goto-top.php?id='+id;
  return true;
}

function clktop_page(id)	{
  window.location = '/goto-top-page.php?id='+id;
  return true;
}


