function ShowHide(showElement, hideElement)
{
    eval(showElement + ".style.display = ''");
    eval(hideElement + ".style.display = 'none'");
}
