// JavaScript Document

// the code to split the email into parts and paste it back together
function renderSafeEmail(last, first) {
	var domain = "biztimes"
	var toplevel = "com"
	document.write(first + "." + last + "\@" + domain + "." + toplevel);
}

function renderSafeEmailLink(last, first) {
	var domain = "biztimes"
	var toplevel = "com"
	document.write('<a href="mailto:' + first + '.' + last + '\@' + domain + '.' + toplevel + '"><img src="\/nf\/themes\/sbt\/images\/icons\/email.gif" alt="Email" /></a>');
}
