<!--


//EMAIL SCRIPT

function writeEmailAddress(addressee,subject,domain,linktext,style) {

//"addressee" is the first part of the address, e.g. "nobody" in "nobody@aol.com"
//"domain" is the last part of the email address, e.g. "aol.com" in "nobody@aol.com"
//"linktext" is text you want to show in the webpage that gets a link applied to it.
//E.g., "Email the Fashion Show Coordinator" is a mailto link with the appropriate 
//email address.  Leave blank to use the email address itself as the linktext.
//"style" lets you style the links.  Default here is bold instead of underlined.
//You can change the color, font, whatever for the link style, or eliminate it.

var site = "rustlingleafpress.com"

  var emailAddress = addressee + "@" + domain;
  if (writeEmailAddress.arguments.length < 2 || subject=='') {
    subject = "Inquiry from janellaidman.com website";
    }
  if (writeEmailAddress.arguments.length < 4 || linktext=='') {
    linktext = emailAddress;
    }
  var linkstyle
  linkstyle = " style=\"text-decoration:none\; font-weight: bold;" + style + "\"";

  document.write("<a href=\"mailto:" + emailAddress + "?subject=" + subject + "\"" + linkstyle + ">" + linktext + "</a>");
  }


//-->