/*Insert a mailto link */
function InsertMailLink(name,address,domain,subject,text)
{
	emailE=(name + '@' + address + '.' + domain)
	if (text=="") {
		text=emailE
	}
	document.write('<a href="mailto:' + emailE +'?subject=' + subject + '">' + text + '</a>')
}
