function showHideTextDiv(divId,action){
  document.getElementById(divId).style.display=action;
}
