function showElement(pId) {
    document.getElementById(pId).style.display = 'block';
}
function hideElement(pId) {
    document.getElementById(pId).style.display = 'none';
}