function fill(co) {

if(document.getElementById(co)){ 
document.getElementById(co).style.backgroundColor ='#007CFF';
}
	
}

function unfill(co) {

if(document.getElementById(co)){ 
document.getElementById(co).style.backgroundColor ='#0055B7';
}
	
}
