
function enc(user,domain,ext,sometext,fcolor) {
	if (fcolor != null){
    	fontcolor = '<span style="color:' + fcolor + '">';
  	}else{
		fontcolor ='<span class="whiteblack">';
	}
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var text = user;
	text += '&#64;';
	text += domain;
	text += '.';
	text += ext;
        var end = fontcolor + text + '</span></a>';
	document.write('<a style="text-decoration:underline" href="');
	document.write(first+second+third);
	document.write(user);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);
	document.write('?Subject=');
	document.write(sometext);
	document.write('">');
	document.write(end);
}

function enc2(user,domain,ext,thelink,sometext,fcolor) {
	if (fcolor != null){
    	fontcolor = '<span style="color:' + fcolor + '">';
  	}else{
		fontcolor ='<span class="whiteblack">';
	}
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var text = user;
	text += '&#64;';
	text += domain;
	text += '.';
	text += ext;
        var end = fontcolor + thelink + '</span></a>';
	document.write('<a style="text-decoration:underline" href="');
	document.write(first+second+third);
	document.write(user);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);
	document.write('?Subject=');
	document.write(sometext);
	document.write('">');
	document.write(end);
}