var theDiv;
function fadeIn(){
  theDiv = document.getElementById('commcomp');
  theDiv.style.display='block';
  if(document.all){
     theDiv.filters[0].Apply();
     theDiv.filters[0].Play();
  }
}

function fadeOut(){
  theDiv.style.display='none';
}