// JavaScript Document

function bannerManager(id, width, height, hide) {
        elmnt = document.getElementById(id);
        elmnt.style.maxWidth = width+"px";
        elmnt.width = width+"px";
        elmnt.style.maxHeight = height+"px";
        elmnt.height = height+"px";
        //alert("comanda: width"+width+", height:"+height+", hide:"+elmnt.style.overflow);
    }