
//fonction div cliquable
$('.clic').click( function() {     
    var url = $(this).find('a').attr("href");
    var target = $(this).find('a').attr("target");
    if (target == "_blank") {
    window.open(url);
    } else {
        location.href = url;
    }
});


// Fonction qui ouvre une popup
function ouvre_popup(page,taille)
{
	window.open(page,'info','top=200,left=200,' + taille + ',resizable=no,scrollbars=yes,fullscreen=no');
}

function addFav()
{
	if (document.all)
	{
		window.external.AddFavorite(location.href, document.title);
	}
	else
	{
		alert('Vous pouvez faire CTRL + D pour ajouter cette page dans vos signets, ou favoris.')
	}
}





