<!--
//-------------------------------------------------
// fonction qui permet d'afficher le marqueur de stats
//-------------------------------------------------
function display_marqueur(pParam)
{
	var hsh = new Date();
	var link_code = "";
	var link_href = "";
	link_code += "<img width=\"0\" height=\"0\" border=0 ";
	link_code += "src=\"";
	link_href = "/statistiques/save_log.asp?1=1" + pParam;
	if(parseFloat(navigator.appVersion)>=4)
	{
		link_href += "&resolution=" + screen.width + "x" + screen.height;
		link_href += "&nb_couleur=" + screen.colorDepth + " bits";
		link_href += "&navigateur=" + navigator.appName;
		link_href += "&navigateur_version=" + navigator.appVersion;
		link_href += "&referent=" + document.referrer.replace("&", "$");
		link_href += "&page=" + document.location.href.replace("&", "$");
	}
	link_code += link_href + "\">";
	document.write(link_code);
	//document.write(link_href);
}
// -->