function GetEmail (s) {
	var code="";
	for (var k=0; k<s.length; k+=3) {
		code = String.fromCharCode(s.substring(k,k+3)) + code;
	}
	document.write("<a href=\"mailto:" + code + "\">" + code + "<\/a>");
}
