function bookmark()
{
var url = eval(self.location);
var title = document.title;
var msg = 'Konnte Favoriten nicht erstellen.\n\nBitte speichern Sie ' + url + ' manuell ab.';
try
{
if (window.sidebar) // Mozilla Firefox Bookmark
{
return window.sidebar.addPanel(title, url, "");
}
else if( window.external )
{ // IE Favorite
return window.external.AddFavorite( url, title);
}
else if(window.opera && window.print)
{ // Opera Hotlist
alert(msg);
}
}

catch(err)
{
alert(msg);
}
} 