// T CONTROL 2 STANDARD JAVASCRIPT FUNCTIONS

// ADD TO FAVOURITES
function addToFavourites() {
  if (document.all)
    window.external.AddFavorite(location.href, document.title);
  else if (window.sidebar)
    window.sidebar.addPanel(document.title, location.href, "")
  return false;
}

// PRINT PAGE
function printPage() {
  window.print();
  return false;
} 

// EMAIL TO FRIEND
function emailFriend() {
  var sName  = prompt('Enter your name', '');
  if(sName == '' | sName == null)
    return false;
  var sEmail = prompt('Enter you friend\'s email address (not stored or used for marketing purposes)', '');
  if(sEmail == '' | sEmail == null)
    return false;
  sMessage = 'Dear friend, %0A%0AI found this website and I thought you would be interested in it too: ' + document.title + ' at ' + location.href + '%0A%0A' + sName;
  document.location = 'mailto:'+sEmail+'?subject=Interesting website&body=' + sMessage;
  return false;
}
