function showhide(divid) {
obj = document.getElementById(divid);
obj.style.display = obj.style.display == 'none' ? 'block' : 'none';
}

function showQuickMenu() {
  showIt = true;
  document.getElementById('quick').style.display='block';
}
function hideQuickMenu() {
  showIt = false;
  setTimeout("hideQuickMenuNow()", 1200);
}
function hideQuickMenuNow() {
  if (showIt == true)
    return;
  document.getElementById('quick').style.display='none';
}
