function bmjs(url, title) {
  try {
    if (window.sidebar) { // Firefox Bookmark
      return window.sidebar.addPanel(title, url, "");
    } else if( window.external ) { // IE Favorite
      return window.external.AddFavorite( url, title); 
    } else if(window.opera && window.print) { // Opera Hotlist
      return true; 
    }
  } catch(err) {
    // do nothing
  }
  alert('Please Note: Your browser does not support the Easy Bookmark option that you selected. Instead, you can manually bookmark this page by using the Bookmarks menu option at the top of your browser window.');
}

function printjs() { window.print() }
