﻿function setStatusBar(text)
{
  window.status = text;
}

function addToFavorites()
{
  if (document.all)
  {
    window.external.AddFavorite(location.href, document.title);
  }
}

function printerVersion()
{
  var textToPrint = document.getElementById('middlecolumn');
  var pageTitle = document.title;
  var printerWin = window.open('', '', 'width=640, height=480, innerWidth=640, height=480, scrollbars=1, statusbar=0, toolbar=1');
  
  printerWin.document.writeln('<html>');
  printerWin.document.writeln('<head>');
  printerWin.document.writeln('<title>' + pageTitle + '</title>');
  printerWin.document.writeln('<link rel="stylesheet" type="text/css" href="/css/printer.css" />');
  printerWin.document.writeln('</head>');
  printerWin.document.writeln('<body>');
  printerWin.document.writeln('<img src="/images/logo.gif" alt="New Montenegro - Cosa ti hanno raccontato di noi?" class="logo" />');
  printerWin.document.writeln('<hr />');
  printerWin.document.writeln(textToPrint.innerHTML);
  printerWin.document.writeln('<hr />');
  printerWin.document.writeln('&copy; 2006 - New Montenegro.eu. Tutti i diritti riservati.');
  printerWin.document.writeln('</body>');
  printerWin.document.writeln('</html>');
  
  printerWin.document.close();
}

function tellAFriend()
{
  var mailSubject = 'Ti invito a visitare NewMontenegro.eu';
  var mailBody = 'Visita questa pagina:%0A%0A' + document.title + '%0A%0A' +
                 location.href;
  
  location.href = 'mailto:?subject=' + mailSubject + '&body=' + mailBody;
}