function showSubmenu(object) {
    if (null != (oLayer = findObj(object))) {
	  if (oLayer.style) {
	    oLayer = oLayer.style;
      }
	  oLayer.display = 'block';
    }
}

function hideSubmenu(object) {
    if (null != (oLayer = findObj(object))) {
	  if (oLayer.style) {
	    oLayer = oLayer.style;
      }
	  oLayer.display = 'none';
    }
}
