function getStyle(m, Out) {
var temp = m;
    if(Out == true) {
     document.getElementById(temp).style.background = "#fade2e"; //this is the over
    } else {
      document.getElementById(temp).style.background = "#fdec7b"; //this is the out	
    }
}