function writeLink(url, anchortext) {
  if (typeof(url) == 'undefined') {
      url = "/";
      anchortext = "home";
  }
  else if (typeof(anchortext) == 'undefined')
      anchortext = url;

  document.write("<a href=" + "http://" + url + "/" + ">" + anchortext + "</a>");
}
