// JavaScript Document
function ChangeMessage(message,champ) {  if(document.getElementById)    document.getElementById(champ).innerHTML = message;  }

function PopupImage(img, titre) { 
  // Compatible IE5+ / NN6+ / Mozilla
  oFenetre = window.open('','Image','width=200,height=200,toolbar=0,scrollbars=0,resizable=0,top=300,menuBar=0, left=400');
  oFenetre.document.write("<html><head><title>"+titre+"</title></head>"); 
  oFenetre.document.write("<script type=\"text/javascript\">function AjustePopUp() { if (document.images[0].complete) { window.resizeTo(document.images[0].width+40,document.images[0].height+60); window.focus();} else { setTimeout('twAjustePopUp()',1000) } }</"+"script>");
  oFenetre.document.write("<body onload='AjustePopUp()'  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='"+titre+"' >");
  oFenetre.document.write("<br><font size='-1'><a href='javascript:this.close();'>Fermer la fenêtre</a></font></td></tr></table></body></html>"); 
  oFenetre.document.close(); 
} 

function popUp(URL,height,width,top,left,scrollbar) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open('"+URL+"', '" + id + "', 'toolbar=0,scrollbars="+scrollbar+",location=0,statusbar=0,menubar=0,resizable=1,height="+height+",width="+width+",left="+left+",top="+top+"');");
}

function PopupPont(img, titre) { 
  // Compatible IE5+ / NN6+ / Mozilla
  oFenetre = window.open('','Image','width=500,height=540,toolbar=0,scrollbars=1,resizable=1,menuBar=0,top=0,left=250');
  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%' bgcolor='#EDF6FE' border='0' cellspacing='0' cellpadding='0' height='100%'><tr><td align='center'><b><font color='#000099'>"+titre+" :</font></b><br><br><tr><td valign='middle' align='center'>"); 
  oFenetre.document.write("<img src='"+img+"' border='0' alt='"+titre+"' >");
  oFenetre.document.write("</td></tr></table></body></html>"); 
  oFenetre.document.close(); 
} 
function PopupExcu(titre, texte) { 
  // Compatible IE5+ / NN6+ / Mozilla
  oFenetre = window.open('','','width=350,height=300,toolbar=0,scrollbars=1,resizable=1,menuBar=0,top=200,left=250');
  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='280' align='center' bgcolor='#EDF6FE' border='2' cellspacing='0' cellpadding='0' height='100%'><tr><td align='left' width='250'><b><font color='#000099'>"+titre+" :</font></b><br><font color='#000099'>"+texte+"</font></td> "); 
  oFenetre.document.write("</tr></table></body></html>"); 
  oFenetre.document.close(); 
} 

function VerificationEmail(elm)
{
if (elm.value.indexOf("@") != "-1" &&
    elm.value.indexOf(".") != "-1" &&
    elm.value != "")
    return true;
return false;
}

function VerificationFormulaire()
{
if (VerificationEmail(document.formmail.Email) == false)
    {
    alert("Email non Valide.");
    document.formmail.Email.focus();
    return false;
    }

return true;
}
//--> 


