<!--
// javascript source code
// (c) 2002 marcus wilhelm - programat4
// mailto:info@programat4.de
// all responsibility for use remains with the user

var disableDefaultLinkText = 0;

function resetThen() {
  if (disableDefaultLinkText == 0) {
    var theText = defaultLinkText;
    displayText('then',theText);
  }
}

function displayText(whichLayer,whichText) {
if (is_nav4up || is_ie4up) { // begin browser exclusion
  var textMainString = '<font class="flatt1"><b>' + whichText + '</b></font>';
  if (document.getElementById) {
    window.document.getElementById(whichLayer).innerHTML = textMainString;
  } else if (document.all) {
    if (whichLayer == 'now') {
      window.document.all.now.innerHTML = textMainString;
    }
    if (whichLayer == 'then') {
      window.document.all.then.innerHTML = textMainString;
    }
  } else if (document.layers) {
    window.document.layers[whichLayer].document.open();
    window.document.layers[whichLayer].document.write(textMainString);
    window.document.layers[whichLayer].document.close();
  }
} // end browser exclusion
}
//-->