// JavaScript Document
function setBackgroundImage(id, bgcolor) {
    if (document.getElementById) {
        document.getElementById(id).style.background = bgcolor;
    }
}
