/**
 decode email
 
 email are encoded to avoid grabbing from spammers.
 encoding his simple : an Array of ascii chars

	from generating javascript code which replace the href html tag
	use the page : encode-email.html

 2005-11-11 cyrille@giquello.com

*/

/**
 *
 */
function email_decode( emailarray )
{
	var clear_email=''
	for( var i=0;i<emailarray.length;i++)
		clear_email += String.fromCharCode( emailarray[i] )
	return clear_email ;
}

