
    var current_panel = 1;
function show(a) {
var temp = document.getElementById('sctCont'+current_panel);
temp.style.display = 'none';
current_panel = a;
var temp = document.getElementById('sctCont'+a);
temp.style.display = '';
}

