// JavaScript Document
function emailencoder_jp() {
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address = 'jeremy';
	var domain = 'jpaulwriting';
	var ext = 'com'; 
	document.write('<a class="lowpronav" href="');
	document.write(first+second+third);
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('">'); 
	document.write('Email Jeremy</a>');
}

function emailencoder_ef() {
	var first = 'ma';
	var second = 'il';
	var third = 'to:';
	var address1 = 'eben';
	var address2 = 'foggitt';
	var domain = 'btinternet';
	var ext = 'com'; 
	document.write('<a class="lowpronav" href="');
	document.write(first+second+third);
	document.write(address1);
	document.write('.');
	document.write(address2);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('">'); 
	document.write('Email Eben</a>');
}