﻿// JScript File
function print_mail_to_link(lhs, strName, rhs) {
		document.write("<A HREF=\"mailto");
		document.write(":" + lhs + "@");
		document.write(rhs + "\">" + strName + "<\/a>");
}

