function put(link)
{
    var newNode = document.createElement("object");
    newNode.setAttribute("data", "http://modna.pl/img/promo/billboard.swf?clickTag="+link);
    newNode.setAttribute("type", "application/x-shockwave-flash");
    newNode.setAttribute("width", "750");
    newNode.setAttribute("height", "100");
    var atr1 = document.createElement("param");
    atr1.setAttribute("name","movie");
    atr1.setAttribute("value","http://modna.pl/img/promo/billboard.swf?clickTag="+link);
    newNode.appendChild(atr1);
    var atr2 = document.createElement("param");
    atr2.setAttribute("name","wmode");
    atr2.setAttribute("value","transparent");
    newNode.appendChild(atr2);    
    document.getElementById("BlogBodyBox").parentNode.insertBefore( newNode, document.getElementById("BlogBodyBox"));
}

