// 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 = 'hca';
var at = '@';
var tld = '.org.uk';

document.write('<a href="mailto:' + whose + at + d + tld + '">' + whose + at + d + tld + '</a>');
}

function displayEI(whose){
var d = 'hca';
var at = '@';
var tld = '.org.uk';

document.write('<a href="mailto:' + whose + at + d + tld + '"><img src="/img/callnow.gif" alt="Email us or call 01942 734455" class="rollover" /></a>');
}