﻿/* Javascript document */

function mailer(user, domain, suffix, text, style, alt) {
	
	var address = user + "@" + domain + "." + suffix;
	if (text == "" || text == undefined) {text = address;}
	if (style != "" && style != undefined) {style = " class='" + style + "'";}
	if (alt != "" && alt != undefined) {alt = " title='" + alt + "'";}
	
	document.write("<a href='mailto:" + address + "'" + style + alt + ">" + text + "</a>");
	
	}