// JavaScript Document
theString='reynolds.ej%gmail=cov';

  function mailTheStuff(theString) {
    re1 = /%/;
	re2 = /=/;
	re3 = /v/;
	theURL = 'mailto:' + ((theString.replace(re1, '@')).replace(re2, '.')).replace(re3, 'm');
	location.href=theURL;
  }
