function email()
{
	var emailarray= new Array(105,110,102,111,64,102,111,114,45,117,109,45,115,111,102,116,119,97,114,101,46,100,101)
	var postemail=''
	for (i=0;i<emailarray.length;i++)
	postemail+=String.fromCharCode(emailarray[i])
					
	document.write('<a href="mailto:'+postemail+'">'+postemail+'</a>')
}
