﻿function showElement(elementID) {
    var el = $get(elementID);

    if (el)
        el.style.display = 'block';
}

function hideElement(elementID) {
    var el = $get(elementID);

    if (el)
        el.style.display = 'none';
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();