var ct = new Date();
var ThisYear = ct.getFullYear();

// This will update status bar copyright accordingly to current year
defaultStatus="© 1991-"+ThisYear+" Vimar 1991 S.p.A.";

// Allow both Microsoft IE and FireFox users to bookmark this website
function BookmarkMe()
{
    if (document.all) {
        window.external.AddFavorite("http://www.vimar1991.com/it/","Vimar 1991 S.p.A.");
    } else if (window.sidebar) {
        window.sidebar.addPanel("Vimar 1991 S.p.A.","http://www.vimar1991.com/it/","");
    }
}

// Brake external frames 	
if (top.frames.length != 0) {
	top.location = self.document.location;
}