function printPage(){
  window.print() ;  
}

function emailPage(){
  document.location.href='mailto:?Subject=The email agency website&Body=Hiya, I thought you might be interested in the following page on the email agency website:%0A%0A' + document.title + ' %0A' + location.href + ' %0A%0ARegards';
  return false;
}

function bookmarkPage(){
  if(navigator.userAgent.toLowerCase().indexOf('chrome') > -1){
    // Google Chrome Bookmark
    alert('Sorry!\n\nAdding bookmarks is not supported in Google Chrome');
  }
  else if(window.sidebar){
    // Mozilla Firefox Bookmark
    window.sidebar.addPanel(document.title, location.href,"");
  }
  else if(window.external){
    // IE Favorite
    window.external.AddFavorite( location.href, document.title);
  }
  else if(window.opera && window.print){
    // Opera Hotlist
    return true;
  }
}