﻿// email hider

var add = "jd.stjohnscentre@btinternet.com";
var stat = '<a onmouseover="window.status=\' ' + 'Click here to send an email\'; return true" onmouseout="window.status=document.title" href="';
	  
function  emailTo(){
output = stat + "mailto:" + add + '">' + "send an email - Click here" + '</a>';
return output;
}

document.write(emailTo());


//  end

