// JavaScript Document
 function WriteEmail(linkName,part1,part2,style){
	 	if(style == undefined){
		document.write("<a href=" + "mail" + "to:" + part1 + "&#64;" + part2 + ">" + linkName + " </a>")
		} else {
		document.write("<a href=" + "mail" + "to:" + part1 + "&#64;" + part2 + " " + style + ">" + linkName + " </a>")
		}
		}