function mouseover(obid){
document.getElementById(obid).style.backgroundColor='white'
}

function mouseout(obid){
document.getElementById(obid).style.backgroundColor='#0066FF'
}

