function takiescape(text)
{
	var reg, text1, pos, old_pos;
	
	text1 = '';
	reg = /[^0-9a-z]/gi;
	pos = 0;
	old_pos = 0;
	while(reg.exec(text))
	{
		pos = reg.lastIndex - 1;
		text1 += text.substr(old_pos, pos - old_pos) + '%' + takiencode(text.charAt(pos));
		old_pos = pos + 1;
	}
	if(old_pos < text.length)
	{
		text1 += text.substr(old_pos);
	}
	return text1;
}

function takiencode(c)
{
	var c1;
	
	c1 = takiDecToHex(c.charCodeAt(0));
	for(var i = c1.length; i < 2; i++)
	{
		c1 = '0'.concat(c1);
	}
	return c1;
}

function takiDecToHex(n)
{
	var hex, n1, n2, i, q, r;
	
	hex = Array('0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F');
	n1 = n;
	n2 = '';
	i = 0;
	i = parseInt(Math.log(n1)/Math.log(16));
	for(var j = i; j >=0; j--)
	{
		q = parseInt(n1/Math.pow(16, j));
		r = n1 - q * Math.pow(16, j);
		n2 = n2.concat(hex[q]);
		n1 = r;
	}
	return n2;
}

var url = takiescape(location.href);
document.write('<div style="line-height:50px"><a href="http://www.freelance-informatique.fr" title="Freelance Informatique"><img src="http://www.freelance-informatique.fr/images/freelance-backlink.jpg?url=' + url + '" alt="Freelance Informatique" /></a><br /><a href="http://www.freelance-informatique.fr" title="Freelance Informatique" style="color:#0000FF;font-weight:bold;font-size:11px;font-family:Verdana">Freelance Informatique</a></div>');