function addToFavorites(urlAddress,title) {
	if (window.sidebar) { // firefox              
		window.sidebar.addPanel("Metalli Lindberg - " + title, urlAddress,"");
	} else if( document.all ) { //MSIE                
		window.external.AddFavorite(urlAddress,"Metalli Lindberg - " + title);        
	} else {              
		alert("Sorry, your browser doesn't support this");        
	}		
}

function Print() {
    window.print();
}
