﻿// email hider

var add = "phil.upton@purple-leaf.co.uk?subject=Enquiry from Richmond Online";
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 + '">' + "click to send an email" + '</a>';
return output;
}

document.write(emailTo());

//  end
