//
// Common JavaScript file for www.nofs.org
//

function showFunction(oName) {
    oObj = document.getElementById(oName);
    oObj.style.display='inline';
}
function hideFunction(oName) {
    oObj = document.getElementById(oName);
    oObj.style.display='none';
}
