/* author: Julian H Jones */
/* Creation date: 11/12/2003 */
<!-- This script generates an address, variables namem and subjectm must be set before calling -->

<!-- Begin

var thirdm = 'to:';
var firstm = 'ma';
var secondm = 'il';
var address2 = 'hpfinfo';
var ext = 'org.uk'; 
var domain = 'hantsweb';


document.write('<a href="');
document.write(firstm+secondm+thirdm);
document.write(address2);
document.write('@');
document.write(domain);
document.write('.');
document.write(ext); 
document.write('?subject=');
document.write(subjectm);
document.write('">'); 
document.write(namem);
document.write('</a>');

// End -->