// Functions to provide privacy for e-mail addresses.

if (document.images) {
// "On" image
image1on = new Image();
image1on.src="images/contact-on.gif";
// "Off" image
image1off = new Image();
image1off.src = "images/contact.gif";
}

function imageOn(imageName) {
if (document.images) {
document.images[imageName].src = eval(imageName + "on.src");
} }

function imageOff(imageName) {
if (document.images) {
document.images[imageName].src = eval(imageName + "off.src");
} }

// A function to provide privacy for e-mail addresses.

function contactUs() {
  var domain = "hollyhockbb.com";
  var username = "info";
  var email = username + "@" + domain;
  var subject = "Hollyhock%20House%20BB";
  var display = "<img name=\"image1\" id=\"image1\" src=\"images/contact.gif\" width=\"95\" height=\"28\" alt=\"Contact Us\" border=\"0\" />";
  document.write("<a href=\"mailto:"+email+"?subject="+subject+"\" title=\"Address e-mail to Hollyhock House (e-mail window).\" onmouseover=\"imageOn('image1')\" onmouseout=\"imageOff('image1')\" \"title=\"Address e-mail to Hollyhock House (e-mail window).\">"+display+"</a>");
}
