function Show_Fields(Display) {
document.getElementById(Display).style.display = 'block';
}

function Hide_Fields(Display) {
document.getElementById(Display).style.display = 'none';
}
