
function M_marquer(){
hsh = new Date();
hsd = document.getElementById(this.idMarq);
hsr = document.referrer.replace(/[<>]/g, '');
hsi = '<img alt="" width="1" height="1" ';
hsi += 'src="'+ this.protocole +'://'+this.host;
hsi += '/hit.xiti?s='+ this.s;
hsi += '&amp;s2='+this.s2;
hsi += '&amp;p='+this.p;
hsi += '&amp;hl=' + hsh.getHours() + 'x' + hsh.getMinutes();
hsi += 'x' + hsh.getSeconds();
if(parseFloat(navigator.appVersion)>=4){
Xiti_s = screen;
hsi += '&amp;r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x';
hsi += Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;
}
hsd.innerHTML = hsi + '&amp;ref=' + hsr.replace(/&/g, '$') + '" />';
}
function M_xt_clic(p_typeclic, p_page, p_url, p_nouvelle)
{
hsh = new Date();
hsd = document;
hsr = hsd.referrer.replace(/[<>]/g, '');
xt_img = new Image();
hsi = this.protocole+'://'+this.host+'/hit.xiti?s='+this.s;
hsi += '&amp;p='+p_page+'&amp;clic='+p_typeclic+'&amp;hl=' + hsh.getHours();
hsi += 'x' + hsh.getMinutes() + 'x' + hsh.getSeconds();
if(parseFloat(navigator.appVersion)>=4){
Xiti_s = screen;
hsi += '&amp;r=' + Xiti_s.width + 'x' + Xiti_s.height + 'x';
hsi += Xiti_s.pixelDepth + 'x' + Xiti_s.colorDepth;
}
hsi += '&amp;ref=' + hsr.replace(/&/g, '$');
xt_img.src = hsi;
if (p_url != null){ 
if ((p_nouvelle == '') || (p_nouvelle == null)) { 
hsd.location = p_url;
} 
else {
xfen = window.open(p_url,'xfen',''); xfen.focus();
}
}
else{
return;
}
}
function M_setS(p_s) {
this.s = p_s;
}
function M_setS2(p_s2) {
this.s2 = p_s2;
}
function M_setP(p_page) {
this.p = p_page;
}
function M_setIdMarq(p_id) {
this.idMarq = p_id;
}
function M_setProtocole(p_protocole) {
this.protocole = p_protocole;
}
function Marqueur(p_host) {
this.s = '';
this.s2 = '';
this.p = '';
this.idMarq = '';
this.protocole = 'http';
this.host = p_host;
this.marquer = M_marquer;
this.xt_clic = M_xt_clic;
this.setS = M_setS;
this.setS2 = M_setS2;
this.setP = M_setP;
this.setIdMarq = M_setIdMarq;
this.setProtocole = M_setProtocole;
}
function fabriqueMarqueur(p_host) {
var marqueur = new Marqueur(p_host);
return marqueur;
}
