function contactemail() {
str1='gmail'
str2='com'
str3='halliday'
str4='.'
str5='@'
str6='brett'
str7=(str6 + str4 + str3 + str5 + str1 + str4 + str2)
document.write('<a href="mailto:' + str7 + '">' + str7 + '</a>')
}