﻿

//alert('test');


// HELP START //

function toggle(target) {
 
    var group = document.getElementById(target);

   // alert(group.style.display);
 

    if (group.style.display == "block" || group.style.display == "Block") {
        group.style.display = "none";
    }
    else {
        group.style.display = "block";
    }
}


// HELP END //


