// tag A
var tagA = document.createElement("a");
tagA.setAttribute("href", "http://adnext.fr/click.adv?id=6372&idl=64388279&plc=7&s=all");
tagA.setAttribute("class", "linkFond");
tagA.setAttribute("target", "_blank");
// tag IMG
var tagIMG = document.createElement("img");
tagIMG.setAttribute("src", "http://adnext.fr/bannieres.adv?id=6372&idl=64388279&plc=7&s=all");
tagIMG.setAttribute("width", "1");
tagIMG.setAttribute("height", "1");
tagIMG.setAttribute("border", "0");
tagIMG.setAttribute("alt", "");
// locate first child of BODY
var bodyArray = document.getElementsByTagName("body");
var divcontent = bodyArray[0].firstChild;
bodyArray[0].insertBefore(tagA, divcontent);
tagA.appendChild(tagIMG);

//alert(bodyArray[0].innerHTML); 

/*
<a href="http://adnext.fr/click.adv?id=6372&idl=64388279&plc=7&s=all" class="linkFond" target="_blank"><img width="1" height="1" src="http://adnext.fr/bannieres.adv?id=6372&idl=64388279&plc=7&s=all" alt="" border="0" /></a>
*/