// JavaScript Document

//<SCRIPT>

//<!--

function emscramble(first, text, css, last){
 var a,b,c,d
 a='<a href=\"mai'
 //b='volunteers'
 b=first
 c='>'
 a+='lto:'
 b+='@'
 d='</a>'
 b+=last+"\""
 css=' '+css+' '

 document.write(a+b+css+c+text+d)
}

function emshow(first, css, last){
 var a,b,c,d
 a='<a href=\"mai'
 //b='volunteers'
 b=first
 c='>'
 a+='lto:'
 b+='@'
 d='</a>'
 b+=last+"\""
 css=' '+css+' '
 text=first+'@'+last;
 document.write(a+b+css+c+text+d)
}
// use :
//emscramble('a', 'tell us', "class='text'", 'b.com')

function VerifEmail(adresse)
{   // found here: http://www.quirksmode.org/js/mailcheck.html
	var filter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
	if (filter.test(adresse)) 
	{
		// Adresse email OK
		return true;	
  	}
  	else
  	{	
  		// Adresse email non valide
		return false;
  	}
}

//-->

//</SCRIPT>