var win = null;

function NewWindow(mypage,myname,w,h,scroll,rzb){

LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable='+rzb+''
win = window.open(mypage,myname,settings)
if(win.window.focus){win.window.focus();}
}//# NewWindow

function IsValidMail(strEmail){
	// Structure de l'adresse mail
	var reg = /^[a-z0-9._-]+@[a-z0-9.-]{2,}[.][a-z]{2,3}$/
   regObject = new RegExp();
   regObject = reg.exec(strEmail);
   if  (regObject) return true;
  }//# IsValidMail





