
function cs_setInnerHtml(id, html)
{
    var e = document.getElementById(id);
    if (e)
        e.innerHTML = html;
};