// 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,i;
	i=32*2;
	anc = String.fromCharCode(i) + 'pay4foss.org';
	document.writeln('[&nbsp;<a href=\'mailto:' + em2 + anc + '\'>' + em1 + anc + '</a>&nbsp;]');
}
// use a noscript tag for javascript disabled browsers
