// JavaScript Document for FECEI

function popup(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function tachan(id) {
       var e = document.getElementById(id);
       if(e.style.display == 'block')
          e.style.display = 'none';
       else
          e.style.display = 'block';
}
