// JavaScript Document
function changeBG(myId,myBg){
    document.getElementById(myId).style.backgroundColor  = myBg;	
}
