//appel de l'image et passage dans l'url du montant(site marchand)
//du titre du site(pour le cookie), identifiant client pour bd

function InsereImage(montant)
{
	// configuration en fonction du client
	// titre : nom du cookie
	// identifiant : identifiant pour récuperer les connexions bd
	
	var titresite
	var identifiant
	titresite = "VisiteurBlueSearch"
	identifiant = "BlueSearch"
	identifiant_pwd = "BlueSearch105"
	
	var URL
	URL = "<img src='http://195.146.212.232/enregistrement/default.asp?ref="
	URL = URL + escape(document.referrer)
	URL = URL + "&montant=" + montant
	URL = URL + "&site=" + titresite
	URL = URL + "&id=" + identifiant
	URL = URL + "&idpwd=" + identifiant_pwd
	URL = URL + "'>"
	document.write(URL);
}