function changecolor(el,color){
  for(var i=0;i<el.children.length;i++)
    el.children[i].style.backgroundColor=color;
}
function goto(url){
  window.location.href=url;
}
