function add_bookmark(page_title,url) { 

if(window.sidebar) 
// Firefox / Mozilla 
{ window.sidebar.addPanel(page_title, url,''); 
} else if(window.opera) 
// Opera 
{ var a = document.createElement('A');
a.rel = 'sidebar'; a.target = '_search'; a.title = page_title; a.href = url; a.click(); 
} 
else if( ($.browser.msie)){
window.external.AddFavorite(url, page_title);
}
else { alert('Désolé, mais votre navigateur ne supporte pas cette fonctionnalité!\nAjouter manuellement à partir du menu Favoris.'); } 
 }  
 
 $(document).ready(function() {
$(".imieigiochibox").click(function() {
idgame= $('.imieigiochibox span').html();
$.ajax({
		   	 type: "GET",
		  	 url: "../../favourgame.php",
		 	 data: "gamekey="+idgame,
		 	  success: function(msg){
		 	    $("#messaggio").html(msg);  
				
		  	   }
			 });
  });

$('.closes').click(function(){
                idgame=$(this).find('a').attr('id');

                $.ajax({
              	  type: "GET",
                  url: "../removefavourgame.php",
				  data: "gamekey="+idgame,
				  success: function(msg){
                   $('#catgioco'+idgame).hide('slow');
					}

					 });

              })
});
