function mail(theType)
{
	if (theType == 'me') {
		var email = 'm'+'.'+'s'+'c'+'h'+'o'+'n'+'e'+'w'+'i'+'l'+'l'+'e'+'@'+'e'+'c'+'o'+'n'+'o'+'m'+'y'+'-'+'x'+'-'+'t'+'a'+'l'+'k'+'.'+'c'+'o'+'m';
		var subj = '?subject=Development';

	}
	else if (theType == 'support') {
		var email = 's'+'u'+'p'+'p'+'o'+'r'+'t'+'@'+'e'+'c'+'o'+'n'+'o'+'m'+'y'+'-'+'x'+'-'+'t'+'a'+'l'+'k'+'.'+'c'+'o'+'m';
		var subj = '?subject=Flow Chart Software Support';
	}
else if (theType == 'salery') {
		var email = 's'+'u'+'p'+'p'+'o'+'r'+'t'+'@'+'s'+'a'+'l'+'e'+'r'+'y'+'.'+'b'+'i'+'z';
		var subj = '?subject=Salery Support';
	}
	return '<a class="body" href="mailto:'+ email + subj +'">'+email+'</a>';
}