<!--
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: David Stone */

function stopSpam() {
  var displaytext = "Click this link to send us an email"; // Enter text to display on page
  var mail1 = "office"; // Enter first part of e-mail address
  var mail2 = "cedarpropertymgmt.com"; // Enter second part of e-mail address
  var subject = "?subject=From_the_Cedar_Property_Management_web_site"; // enter subject for e-mail
  document.write("<a href=" + "mail" + "to:" + mail1 + "@" + mail2 + subject + ">" + displaytext + "</a>")
}
-->