function swap_m(img_name,to_what) {
		var swap, towhat;
		swap	= eval('document.images.'+img_name);
		towhat='http://www.verifdiploma.com/_img/'+to_what+'.gif';
		swap.src	= towhat;
}

function checkEmail(valeur)
{
	if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(valeur))
	{
		return true;
	}
	if (valeur!="")
	{
		alert("Attention : l'adresse e-mail ne semble pas valide !")
		return false;
	}
}

function popen()
{
   hauteur = 120;
   largeur = 300;
   var top=(screen.height-hauteur)/2;
   var gch=(screen.width-largeur)/2;
	new_win = window.open('pop.php', 'actu', 'toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, menubar=no, width='+largeur+', height='+hauteur+', top='+top+', left='+gch+'');
	new_win.focus();
	return;
}

function popenbnj(urlstr,name,largeur,hauteur)
{
	var top=(screen.height-hauteur)/2;
    var gch=(screen.width-largeur)/2;
	new_win = window.open(urlstr, name, 'toolbar=no, location=no, directories=no, status=no, scrollbars=no, resizable=no, menubar=no, width='+largeur+', height='+hauteur+', top='+top+', left='+gch+'');
	new_win.focus();
	return;
}

function affiche_div(val){
  var tmpa = document.getElementById(val);
  tmpa.style.display="";
}
function enlever_div(val){
  var tmpb = document.getElementById(val);
  tmpb.style.display="none";
}