function showhideel(el) {
if (el.style.display == 'none') {
el.style.display = 'block';
} else {
el.style.display = 'none';
};