function expand(sec)
{
     thisSec = eval('e' + sec);
     if (thisSec != null){
          if (thisSec.length){
               if (thisSec[0].style.display != 'none'){
                    for (var i=0;i<thisSec.length;i++) {thisSec[i].style.display = 'none'}
               }
               else{
                    for (var i=0;i<thisSec.length;i++) {thisSec[i].style.display = 'inline'}
               }
          }
          else{
                         if (thisSec.style.display != 'none')     {thisSec.style.display = 'none'}
               else{thisSec.style.display = 'inline'}
          }
     }

}

function ShowHideElementByID(id) {//admin@flashmx.us
if (document.getElementById) { // DOM3 = IE5, NS6
if(document.getElementById(id).style.display == "none"){
document.getElementById(id).style.display = 'block';
}else document.getElementById(id).style.display = 'none';
}else{
if(document.layers){
if(document.id.display == "none"){ document.id.display = 'block'; }else document.id.display = 'none';
}else{
if(document.all.id.style.visibility == "none"){
document.all.id.style.visibility = 'block';
} else document.all.id.style.visibility = 'none';
}
}
}