function mlg(who,where,subject) {
	where = (where) ? where : location.hostname.replace(/\w+.(.*)/,'$1');
	if (subject) {
		where = where + "?subject=" + subject;
	}
	location = 'mailto:'+who+'@'+ where;
}
function mld(who,where,show,subject) {
	var parms = '\''+who+'\''+((where) ? (',\''+where+'\''):'')+((subject) ? (',\''+subject+'\''):'');
	where = (where) ? where : location.hostname.replace(/\w+.([^.]+)\.(\w+)/,'$1&#46;$2');
	show = (show)?show:who+'&#64;'+where;
	document.write('<a href="javascript:;" onclick="mlg('+parms+')">'+show+'</a>');
}
