/*show hide voor kaartje in bestel form */
var activeSection = 0;
function swapList(section) {
 var targetElement = document.getElementById(section);
 if (targetElement){
     if (targetElement.style.display == "none")
       targetElement.style.display = "" ;
     else
       targetElement.style.display = "none" ;
   }
}

function clickLink(section) {
 if (activeSection != 0) {
   var oldElement = document.getElementById(activeSection);
   swapList (activeSection);
/*   CSBfleXcroll('content');*/
 }
 if (activeSection != section) {
   swapList(section);
   activeSection = section;
/*   CSBfleXcroll('content');*/
 }
 else
   activeSection = 0;
}


/*show hide voor ander aflever adres in bestel form */

var activeSection2 = 0;
function swapList2(section) {
 var targetElement = document.getElementById(section);
 if (targetElement){
     if (targetElement.style.display == "none")
       targetElement.style.display = "" ;
     else
       targetElement.style.display = "none" ;
   }
}

function clickLink2(section) {
 if (activeSection2 != 0) {
   var oldElement = document.getElementById(activeSection);
   swapList (activeSection2);
/*   CSBfleXcroll('content');*/
 }
 if (activeSection2 != section) {
   swapList2(section);
   activeSection2 = section;
/*   CSBfleXcroll('content');*/
 }
 else
   activeSection2 = 0;
}
