// JavaScript Document
// Email link generator script
// Generates email address with email as link
var username = "lisqual";
var hostname = "cix.co.uk";
var linktext = "Contact CIQM";
document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + " class='textlink' title='Contact CIQM via email at this address'>" + linktext + "</a>")