function addfav2()
{
if( window.sidebar && window.sidebar.addPanel ) {
    //Gecko (Netscape 6 etc.) - add to Sidebar
    window.sidebar.addPanel( "Neoépica - Arqueologia e património", "http://www.neoepica.pt/", '' );
} else if( window.external && ( navigator.platform == 'Win32' ||
      ( window.ScriptEngine && ScriptEngine().indexOf('InScript') + 1 ) ) ) {
    //IE Win32 or iCab - checking for AddFavorite produces errors in
    //IE for no good reason, so I use a platform and browser detect.
    //adds the current page page as a favourite; if this is unwanted,
    //simply write the desired page in here instead of 'location.href'
    window.external.AddFavorite("http://www.neoepica.pt/","Neoépica - Arqueologia e património");
} else if( window.opera && window.print ) {
    //Opera 6+ - add as sidebar panel to Hotlist
    //return true;
	window.alert( 'Pressione Ok e de seguida CTRL+T para fazer bookmark desta página' );
} else if( document.layers ) {
    //NS4 & Escape - tell them how to add a bookmark quickly (adds current page,
    //not target page)
    window.alert( 'Pressione Ok e de seguida CTRL+D para fazer bookmark desta página' );
} else {
    //other browsers - tell them to add a bookmark (adds current page, not target page)
    window.alert( 'Infelizmente terá que guardar esta página manualmente no seu browser' );
}
}