<script language="javascript" type="text/JavaScript">

function EmailAddr (name, where) {
  var result = 'mailto:' + name;
	if (where == "re") {
		result += '@taylor-moore.com';
	}
	if (where == "i") {
		result += '@taylormooreinsurance.com';
	}
	return result;
}

</script>

