// JavaScript Document
function copyright() {

///////////////////////////////////////////////
// Copyright che si aggiorna automaticamente v 1.0
// Realizzato da Sepp
// http://sepp.altervista.org
///////////////////////////////////////////////

// Proprietario (Obbligatorio)
var owner = "mdarte"

// Sito Web (Facoltativo)
var website = ""

// Anno Inizio (Obbligatorio)
var ystart = "2011"

// NON MODIFICARE SOTTO QUESTA LINEA

var data = new Date();
var annoAttuale = data.getFullYear();
var spancopy = document.getElementById("copyright");

if (website == "") {
       if (annoAttuale == ystart) {
       spancopy.innerHTML = "&copy; " + annoAttuale + " " + owner
       }

       else {
       spancopy.innerHTML = "&copy; " + ystart + " - " + annoAttuale + " " + owner
       }
}

else {
       if (annoAttuale == ystart) {
       spancopy.innerHTML = "&copy; " + annoAttuale + " <a href=\"" + website + "\">" + owner +

"</a>"
       }

       else {
       spancopy.innerHTML = "&copy; " + ystart + " - " + annoAttuale + " <a href=\"" + website +

"\">" + owner + "</a>"
       }

}
}


