var ct = new Date();
var ThisYear = ct.getFullYear();

// This will update status bar copyright accordingly to current year
defaultStatus="© 2001-"+ThisYear+" Sail Art di Cambiaso Maurizio";

// Allow both Microsoft IE and FireFox users to bookmark this website
function BookmarkMe()
{
    if (document.all) {
        window.external.AddFavorite("http://www.sailart.it/it/","Sail Art");
    } else if (window.sidebar) {
        window.sidebar.addPanel("Sail Art","http://www.sailart.it/it/","");
    }
}

// Brake external frames 	
if (top.frames.length != 0) {
	top.location = self.document.location;
}