<script language="JavaScript">
<!--
function unveil(sbId, content) {

  var x = document.getElementById(sbId);
  if (content) {
    x.innerHTML = content;
  }
  x.style.display = 'inline';
  x.style.visibility = 'visible';
  x.style.position = 'relative';
  return;
}

function reveil(sbId) {

  var x = document.getElementById(sbId);
  x.style.display = 'none';	
  x.style.visibility = 'hidden';
  x.style.position = 'absolute';  
  return;
}  
-->
</script>

