function show(obj){
  var on=$(obj);
  on.style.display="block";
 }
 function hide(obj){
  var off=$(obj);
  off.style.display="none";
 }
