// scripts by SophieWeb http://sophieweb.com unless stated otherwise
// modified version of http://www.dynamicdrive.com/emailriddler/
function emailContact() {
	var a = new Array(101,118,46,98,101,97,117,103,114,97,110,100,64,108,97,112,111,115,116,101,46,110,101,116);
	var b = '';
	for (var i=0; i < a.length; i++)
		b += String.fromCharCode(a[i]);
		
	document.write('<p class="mail"><a href="mailto:' + b + '?subject=Barre au sol de danse" title="Envoyez un mail">Envoyez un mail</a> pour<br />recevoir le planning des cours</p>');
}

