﻿
function toggleMe(a){
  var s1='ExpandingPara1';
  var s2='ExpandingPara2';
  var s3='ExpandingPara3';
  var s4='ExpandingPara4';
  
  var e=document.getElementById(a);
  
  if(!e)return true;
  
  if(e.style.display=="none"){
    e.style.display="block"
  } else {
    e.style.display="none"
  }
  
  if (a!=s1)
  {
    e=document.getElementById(s1); 
    if (e!=null) e.style.display="none";
  }
  if (a!=s2)
  {
    e=document.getElementById(s2); 
    if (e!=null) e.style.display="none";
  }
  if (a!=s3)
  {
    e=document.getElementById(s3); 
    if (e!=null) e.style.display="none";
  }
  if (a!=s4)
  {
    e=document.getElementById(s4); 
    if (e!=null) e.style.display="none";
  }
  
  return true;
}