function gcon_icons_BookmarkPage() { 
	//alert(9);return;
try{
	var title=document.title;
	var url=location.href;
	if (window.sidebar) { // Mozilla Firefox Bookmark		
		window.sidebar.addPanel(title, url,"");	
	} else if( window.external ) { // IE Favorite		
		window.external.AddFavorite( url, title); 
	}	else if(window.opera && window.print) { // Opera Hotlist		
		return true; 
	}else {alert('Il tuo browser probabilmente non supporta questa funzione');}
}catch(e){
	alert('Il tuo browser probabilmente non supporta questa funzione');
}
} 

function gcon_icons_SetAsHomePage(lnk) { 
	//alert(9);return;

	var title=document.title;
	var url=location.href;
	if (document.all){
		
		lnk.style.behavior='url(#default#homepage)';
		lnk.setHomePage(url);
	}else if (document.getElementById){
		  alert('Trascinare il link sull\'icona home sulla barra degli indirizzi');
	}/*else {
		  alert(lnk.alt+"\n\r -  Preferenze in the <B>Edit</B> Menu.<br>- Choose <b>Navigator</b> from the list on the left.<br>- Click on the <b>"Use Current Page"</b> button.');
	}*/

	
} 

