function ToggleVisibility(Element){
 if(Element.style.display=='none')
  Element.style.display = 'inline';
 else
  Element.style.display = 'none';
}