function stopSpam() {
  var displaytext = "";
  var mail1 = "Info";
  var mail2 = "palmerwirfs.com";
  var subject = "?subject=Mailing List";
  displaytext = text1 + text2;
  var locationstring = "mail" + "to:" + mail1 + "@" + mail2 + subject + displaytext ;
  window.location = locationstring;
}
function stopSpam2() {
  var displaytext = "Palmer/Wirfs"; // Enter text to display on page
  var mail1 = "Info"; // Enter first part of e-mail address
  var mail2 = "palmerwirfs.com"; // Enter second part of e-mail address
  var subject = "?subject=Comments"; // enter subject for e-mail
  document.write("<a class='external' href=" + "mail" + "to:" + mail1 + "@" + mail2 + subject + ">" + displaytext + "</a>")
}
function ShowMenu(VIEW)
{
document.getElementById('portlandexpo').style.visibility='hidden';
document.getElementById('clarkcounty').style.visibility='hidden';
document.getElementById('puyallup').style.visibility='hidden';
document.getElementById('exhibitor').style.visibility='hidden';
document.getElementById('tickets').style.visibility='hidden';
document.getElementById(VIEW).style.visibility='visible';
}
function clientSideInclude(id, url) {
  var req = false;
  // For Safari, Firefox, and other non-MS browsers
  if (window.XMLHttpRequest) {
    try {
      req = new XMLHttpRequest();
    } catch (e) {
      req = false;
    }
  } else if (window.ActiveXObject) {
    // For Internet Explorer on Windows
    try {
      req = new ActiveXObject("Msxml2.XMLHTTP");
    } catch (e) {
      try {
        req = new ActiveXObject("Microsoft.XMLHTTP");
      } catch (e) {
        req = false;
      }
    }
  }
 var element = document.getElementById(id);
 if (!element) {
  alert("Bad id " + id + 
   "passed to clientSideInclude." +
   "You need a div or span element " +
   "with this id in your page.");
  return;
 }
  if (req) {
    // Synchronous request, wait till we have it all
    req.open('GET', url, false);
    req.send(null);
    element.innerHTML = req.responseText;
  } else {
    element.innerHTML =
   "Sorry, your browser does not support " +
      "XMLHTTPRequest objects. This page requires " +
      "Internet Explorer 5 or better for Windows, " +
      "or Firefox for any system, or Safari. Other " +
      "compatible browsers may also exist.";
  }
}