function showFormlog() {
  oDiv = document.getElementById('theFormDivlog');
  oDiv.style.display='block';
  return false;
}

function hideFormlog() {
  oDiv = document.getElementById('theFormDivlog');
  oDiv.style.display='none';
  return false;
}