﻿function sendEmail(linkId, recipient)
{
	document.getElementById(linkId).href = "mailto" + ":" + recipient.replace("!", "@");
	return true;
}
