/* Basic JavaScript functions for CCLIBRARIES.ORG web pages */

 //the following function hides email links from spammers trying harvest
 //from this website
 //to use the function in the body, adapt the following command, 
 //surrounded by the <script LANGUAGE="JavaScript"> ... /script> tags 
 //that tell the browser that this is a javascript statement:
//print_mailto_link('janetajohns', 'yahoo.com');

var lhs = "noneL";
var rhs = "noneR";
function print_mailto_link(lhs, rhs) {
	document.write("<a href=mailto:" + lhs + "@" + rhs);
	document.write(">" + lhs);
	document.write("&#64;");
	document.write(rhs);
	document.write("</a>");
}