//CCO JavaScript Library File


//This function writes an email contact with the title line Message from CCO Web Page
//Parameters are the Contact which appears on the page, the email adress preceding the "@" and the domain name following the "@"
function doEmailAddress(contact,email,emailHost)
			{
			  document.write("<a href =" + "'mail" + "to:" + email + "@" + emailHost + "?subject=Message from CCO Web Page'>" + contact + "</a>");
			  //return true;
			}

