function nullLinkClick(href)
  {
  var clear = document.createElement('a');
  clear.href = "javascript: void(null);";
  clear.onclick = function()
    {
    gmb.clear();
    }
  clear.appendChild(document.createTextNode('Close'));
  var optRoot = document.createElement('div');
  optRoot.appendChild(clear);
  optRoot.className = "General_Message_Box_Options_Area";

  var link = document.createElement('a');
  link.href = href;
  link.appendChild(document.createTextNode(href));

  var infoRoot = document.createElement('div');
  infoRoot.className = "General_Message_Box_Info_Area";

  infoRoot.appendChild(document.createTextNode('The page you are trying to reach might not exist, because this is an archived copy. If you wish to continue, click on the link below:'));
  infoRoot.appendChild(document.createElement('br'));
  infoRoot.appendChild(document.createElement('br'));
  infoRoot.appendChild(link);

  var mainRoot = document.createElement('div');

  mainRoot.appendChild(optRoot);

  var clearNode = document.createElement('div');
  clearNode.style['clear'] = "both";
  mainRoot.appendChild(clearNode);

  mainRoot.appendChild(infoRoot);

  gmb.set(mainRoot);
  }

var gmb = new generalMessageBox(100, "General_Message_Box");
