// JavaScript Document
/* 
add this code to the GATHER INFO SPECIFIC TO THE PAGE section of page:

$pageInfo['js'] = '<script type="text/javascript" src="/js/email.js"></script>';

and 

add this code where the email should appear:

<script type="text/javascript">displayE('name')</script> 

and

enter the domain details for the client below (lines 19 & 21)
*/
function displayE(whose){
var d = 'nolanjames';
var at = '@';
var tld = '.co.uk';

document.write('<a class="footer_img" href="mailto:' + whose + at + d + tld + '"><img alt="Email us" src="/img/email_us.gif" /></a>');
}
