function lit_cook(nom) {
	var deb,fin;
	deb = document.cookie.indexOf(nom + "=");
	if (deb >= 0) {
		deb += nom.length + 1;
		fin = document.cookie.indexOf(";",deb);
		(fin < 0) ? fin = document.cookie.length : '';
		return unescape(document.cookie.substring(deb,fin));
	}
	return '';
}

function _StatMark(_d) {
	// verifie si le cookie est en place
	if (lit_cook('statMarkTAC') != _d) {
		document.cookie = 'statMarkTAC' + '=' + escape(_d) + ';path=/;';
		var stat_u = 'http://statm.the-adult-company.com/stock.php?'; 
		var stat_q = 'd=' + escape(_d);
		document.write('<img'+' border="0" width="1" heigth="1" src="'+stat_u+stat_q+'">');
	}
}

function _StatRota(_d) {
	var stat_u = 'http://statm.the-adult-company.com/stock_rota.php?'; 
	var stat_q = 'd=' + escape(_d);
	document.write('<img'+' border="0" width="1" heigth="1" src="'+stat_u+stat_q+'">');
	return false;
}