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