﻿// JScript File

function show(ctl){
    document.getElementById(ctl).className = "show";
}

function hide(ctl){
    document.getElementById(ctl).className = "noshow";
}
