function whoev(lhs) {
 var l = lhs;
 document.write("<a href=\"mailto");
 document.write(":" + lhs + "@");
 document.write("eastvalleydems.com\">");
 document.write(lhs + "@eastvalleydems.com");
 document.write("<\/a>");
 }

function whoev2(link, lhs) {
 document.write("<a href=\"mailto");
 document.write(":" + lhs + "@");
 document.write("eastvalleydems.com\">");
 document.write(link);
 document.write("<\/a>");
 }

function whoto(rhs, lhs) {
 var r = rhs;
 var l = lhs;
 document.write("<a href=\"mailto");
 document.write(":" + lhs + "@");
 document.write(rhs + "\">");
 document.write(lhs + "@" + rhs);
 document.write("<\/a>");
 }

function whoto2(link, rhs, lhs) {
 document.write("<a href=\"mailto");
 document.write(":" + lhs + "@");
 document.write(rhs + "\">");
 document.write(link);
 document.write("<\/a>");
 }
