<!--

function tellFriend(listnum) {
  var bcc = "Jean@bellaworksweb.com,tj@mytownhome.com";
  var subject = "Take a look at this Townhome";
  var body =
      "Click below to view a property that I found " +
      "on the My Townhome website:\n\n " +
      "  http://www.mytownhome.com/cgi-bin/detail2.pl?listnum=" + listnum + "\n\n" +
      "(if you can't click on the above link, just copy and paste it " +
      "into the Address field of your web browser)";

  // BUILD MAIL MESSAGE COMPONENTS
  var doc = "mailto:" +
      "?bcc=" + bcc +
      "&subject=" + escape(subject) +
      "&body=" + escape(body);

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
  return false;
}

function reqSimilar(listnum) {
  var to = "tj@mytownhome.com";
  var bcc = "Jean@bellaworksweb.com";
  var subject = "Request for properties similar to " + listnum;
  var body = "Please send me information on properties similar to MLS listing " + listnum + ".\n";
  body = body+" Price: "+price+"\n";
  body = body+" Project: "+project+"\n";
  body = body+" Address: "+addr+", "+city+" "+zip+"\n\n";

  // BUILD MAIL MESSAGE COMPONENTS
  var doc = "mailto:" + to +
      "?bcc=" + bcc +
      "&subject=" + escape(subject) +
      "&body=" + escape(body);

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
}

function reqAppt(listnum) {
  var to = "tj@mytownhome.com";
  var bcc = "Jean@bellaworksweb.com";
  var subject = "Request for Appointment";
  var body = "I'd like to schedule an appointment to see MLS listing " + listnum + ".\n";
  body = body+" Agent: "+agent+"\n";
  body = body+" Price: "+price+"\n";
  body = body+" Project: "+project+"\n";
  body = body+" Address: "+addr+", "+city+" "+zip+"\n\n";

  // BUILD MAIL MESSAGE COMPONENTS
  var doc = "mailto:" + to +
      "?bcc=" + bcc +
      "&subject=" + escape(subject) +
      "&body=" + escape(body);

  // POP UP EMAIL MESSAGE WINDOW
  window.location = doc;
  return false;
}

function reqAppt2() {
    var form = document.details
//  alert('in reqAppt2:  form='+form)
     form.action = "/requestappointment.php"
     form.target = "_blank"
     form.submit()
     return false
}
//-->

