﻿// Javascript functions

function printpage() {
  window.print();
}

function emailpage() {
  mail_str = "mailto:?subject=Check out this web page";
  mail_str += "&body=I thought you might be interested in this page%0A";
  mail_str += "from the McCoin %26 Smith web site.%0A";
  mail_str += "You can view it at: ";
  mail_str += location.href; 
  location.href = mail_str;
}

function bookmarkpage() {
  if (window.sidebar) { // Firefox
    window.sidebar.addPanel(document.title, location.href,'');
  } else if (window.external) { // IE
    window.external.AddFavorite(location.href, document.title);
  } else { // others TBD
    alert('Sorry! This does not work with your browser.');
  }
}


