var lhs = "name";
var rhs = "company";
var ehs = "com";
var ttl = "title";

function print_mail_to_link(left,right,end,title) 
{
if (left != null){
lhs = left;
}
if (right != null){
rhs = right;
}
if (end != null){
ehs = end;
}
if (title != null){
ttl = title;
}
   document.write("<A HREF=\"mailto");
   document.write(":" + lhs + "@");
   document.write(rhs + "." + ehs + "\">" + ttl + "<\/a>");
lhs = "name";
rhs = "company";
ehs = "com";
ttl = "title";
return false;
}


rhs2 = "company.com"

function print_mail_to_link2(left,right,title) 
{
if (left != null){
lhs = left;
}
if (right != null){
rhs2 = right;
}
if (title != null){
ttl = title;
}
   document.write("<A HREF=\"mailto");
   document.write(":" + lhs + "@");
   document.write(rhs2 + "\">" + ttl + "<\/a>");
lhs = "name";
rhs = "company";
ttl = "title";
return false;
}


function print_mail(left,right,end) 
{
if (left != null){
lhs = left;
}
if (right != null){
rhs = right;
}
if (end != null){
ehs = end;
}
   document.write("<A HREF=\"mailto");
   document.write(":" + lhs + "@");
   document.write(rhs + "." + ehs + "\">" + lhs + "@" + rhs + "." + ehs + "<\/a>");
lhs = "name";
rhs = "company";
ehs = "com";
return false;
}

function print_mail2(left,right) 
{
if (left != null){
lhs = left;
}
if (right != null){
rhs2 = right;
}
   document.write("<A HREF=\"mailto");
   document.write(":" + lhs + "@");
   document.write(rhs2 + "\">" + lhs + "@" + rhs2 + "<\/a>");
lhs = "name";
rhs2 = "company.com";
return false;
}
