/* stampa il copyright */
function copyright(anno)
{
    if ( anno > 1900 )
        document.write("<p class='copyright'><small>&copy; " + anno + " by Paolo Caressa. Questo testo pu&ograve; essere riprodotto anche parzialmente e distribuito ad uso personale del lettore purch&eacute; <b>non a fini di lucro</b>. This text can be reproduced even partially and distributed for personal use of readers but <b>not for the sake of gain</b>.</small></p>");
    else
        document.write("<p class='copyright'><small>Questo testo pu&ograve; essere riprodotto anche parzialmente e distribuito ad uso personale del lettore purch&eacute; <b>non a fini di lucro</b>. This text can be reproduced even partially and distributed for personal use of readers but <b>not for the sake of gain</b>.</small></p>");
}

/* stampa i comandi stampa/chiudi/home */
function comandi()
{
        document.write("<table width='100%' style='font-size:0.8em'><tr><td> <img class='icon' src='img/stampa.gif'></img> </td><td> <a href='javascript:window.print()'>Stampa questa pagina</a> </td><td> <img class='icon' src='img/mail.xbm'></img> </td><td> Contatti: <tt>paolo(a)caressa.it</a> </td><td> <img class='icon' src='img/home.gif'></img> </td><td> Home: <a href='http://www.caressa.it'>http://www.caressa.it</a> </td><td> <img class='icon' src='img/close.gif'></img> </td><td> <a href='javascript:window.close()'>Chiudi</a></tr></table>");
}

