var  root = 'http://www.pasmar.ro/bara/img/';
var text = '<div style="width:900px; margin:auto">' +
                '<ul style="margin:0; padding:0;list-style: none; color: #fff">' +
                    '<li style="float:left; display: block; float:left">' +
                        '<a href="http://www.pasmar.ro/" target="_blank" style="width:20px; height: 20px; display: block; background: url('+root+'1.png) center no-repeat"></a>' +
                    '</li>' +

                    '<li style="float:left; display: block; float:left">' +
                        '<a href="http://pasmar.ro/index.php?p=comanda" target="_blank" style="width:215px; height: 20px; display: block; background: url('+root+'2.png) center no-repeat"></a>' +
                    '</li>' +

                    '<li style="float:left; display: block; float:left">' +
                        '<a href="http://pasmar.ro/index.php?p=promoveaza" target="_blank" style="width:215px; height: 20px; display: block; background: url('+root+'3.png) center no-repeat"></a>' +
                    '</li>' +

                    '<li style="float:left; display: block; float:left">' +
                        '<a href="http://pasmar.ro" target="_blank" style="width:430px; height: 18px; display: block; background: url('+root+'4.gif) center no-repeat"></a>' +
                    '</li>' +

                    '<li style="float:left; display: block; float:left">' +
                        '<a href="http://www.pasmar.ro/" target="_blank" style="width:20px; height: 20px; display: block; background: url('+root+'5.png) center no-repeat"></a>' +
                    '</li>' +
                '</ul>' +
'</div>';



function loadBar()
{
    var bar =document.createElement('div');
    bar.setAttribute('id', 'smart_box_zxk');
    bar.style.width="100%";
    bar.style.backgroundColor="#000000";
    bar.style.position = "fixed";
    bar.style.bottom = "0";
    bar.style.left = "0";
    bar.innerHTML = text


    document.body.appendChild(bar) ;
}

