function ShowHide(id){
a = document.getElementById(id);
a.style.display = (a.style.display == 'none') ? 'block' :'none';
}