function toggle(thisel) {
 //thisel = document.getElementById(elementid);
 if (thisel.style.display != 'none' && thisel.style.display != '') {
  thisel.style.display = 'none';
 } else {
  thisel.style.display = 'block';
 }
}

function toggleother(thatel) {
 thisel = document.getElementById(thatel);
 if (thisel.style.display != 'none' && thisel.style.display != '') {
  thisel.style.display = 'none';
 } else {
  thisel.style.display = 'block';
 }
}
