// pem takes two email addresses an prints the first while linking to the second
// neither email address will include the at symbol or the domain
function pem(em1,em2) { 
	var anc;
	anc = '@' + 'jumpstation.co.uk';
	document.writeln('[&nbsp;<a href=\'mailto:' + em2 + anc + '\'>' + em1 + anc + '</a>&nbsp;]');
}
// use a noscript tag for javascript disabled browsers

