function hide(ref) {
    document.getElementById(ref).style.display = "none"
}

function show(ref) {
    document.getElementById(ref).style.display = "block"
}

function nextStep(hideThis, showThis) {
    hide(hideThis);
    show(showThis);
}