function showHideFromYesNo(inElement,idToHide){
  var style ='';
  if (inElement.value == '0'){
    style = 'none';
  }
  var ourdiv = document.getElementById(idToHide);
  if (ourdiv){
    ourdiv.style.display = style;
  }
}

function parentBackToList(){
  self.location.href='?mode=list';
}	
