function fetchbyid(id) {
return (document.getElementById) ? document.getElementById(id) : document.all[id];
}

function blinkit(id, sai){
		if (sai == "falso"){
		fetchbyid(id).style.background='#5684a2';
		}else{
		fetchbyid(id).style.background='#3f647e';
			//fetchbyid(id).style.cursor='pointer';
		}	


}