// places to ignore
var whereWeAre = document.URL.replace(location.hostname, '').replace(location.protocol,'');
var showLink =1;
//alert(whereWeAre);
// yes you do need the ///at the start
if (whereWeAre == "///cgi-bin/icc.cgi"){showLink-- }
if (whereWeAre == "///cgi-bin/icc.cgi?"){showLink--}

if (showLink == 1){
var eUrl = escape(document.URL).replace(/\+/g, '%2C').replace(/\"/g,'%22').replace(/\'/g, '%27');
var eTitle = escape(document.title).replace(/\+/g, '%2C').replace(/\"/g,'%22').replace(/\'/g, '%27');
if (eTitle == ""){eTitle =eUrl};
var url ='http://www.clbcoopers.co.uk/cgi-bin/emailafriend.cgi?referer=html&id=1&isstatic=Y&url=' + eUrl + '&title='+ eTitle;
document.write('<a href='+ url +'>Send to a friend</a><a href='+ url +'><img src="/images/mail_icon.gif" title="Email this page to a friend" id="iconMailaFriend" name="iconMailaFriend" ></a>');
}
