function make_email(the_username,the_domain_hint){
	if (the_domain_hint == 'dotcom'){
		var the_domain = '@talkswitch.com';
	}
	if (the_domain_hint == 'dotuk'){
		var the_domain = '@talkswitch.co.uk';
	}
	document.write('<a href="mailto:' + the_username + the_domain + '">' + the_username + the_domain + '</a>');
}

function make_css_email(the_username,the_domain_hint,the_class){
	if (the_domain_hint == 'dotcom'){
		var the_domain = '@talkswitch.com';
	}
	if (the_domain_hint == 'dotuk'){
		var the_domain = '@talkswitch.co.uk';
	}
	document.write('<a class="' + the_class + '" href="mailto:' + the_username + the_domain + '">' + the_username + the_domain + '</a>');
}

function make_email_on_text(the_username,the_domain_hint,the_text){
	if (the_domain_hint == 'dotcom'){
		var the_domain = '@talkswitch.com';
	}
	if (the_domain_hint == 'dotuk'){
		var the_domain = '@talkswitch.co.uk';
	}
	if (the_text == 'e-mail'){
		var NewText = '<nobr>e-mail</nobr>';
	}else{
		var NewText = the_text;
	}
	document.write('<a href="mailto:' + the_username + the_domain + '">' + NewText + '</a>');
}

