// JavaScript Document   Copyright 2004 CollectiveIT Industry Systems (www.collectiveit.ca)// All rights reserved.//Prints email link so that it is harder to harvest by Spam Botsfunction print_mail_to_link(lhs) {	var rhs = "career-symposium.org"	document.write("<A HREF=\"mailto");	document.write(":" + lhs + "@");	document.write(rhs + "\">" + lhs + "@" + rhs + "<\/a>");}