I found in web script, allowed unwind div.
function toggle(sDivId) {
var oDiv = document.getElementById(sDivId);
oDiv.style.display = (oDiv.style.display == "none") ? "block" : "none";
}
Whats mean that line: (oDiv.style.display == "none") ? "block" : "none";