function gcon_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_ZoomIN(sel){
	var currsize=parseFloat($(sel).css('font-size'));
	var currlheight=parseFloat($(sel).css('line-height'));
	
	$(sel).css('font-size', (currsize+2)+'px');
	$(sel).css('line-height', (currlheight+2)+'px');
	
	
}

function gcon_ZoomOUT(sel){
	var currsize=parseFloat($(sel).css('font-size'));
	var currlheight=parseFloat($(sel).css('line-height'));
	if((currsize-2)>0){
		$(sel).css('font-size', (currsize-2)+'px');
		$(sel).css('line-height', (currlheight-2)+'px');
	
		
	}
}
