function homepage(website,anchortext)
{
  if (typeof(website) == 'undefined') {
      website = "/";
      anchortext = "home";
  }
  else if (typeof(anchortext) == 'undefined')
      anchortext = website;

  document.write("<a href=" + "http://" + website + "/" + ">" + anchortext + "</a>");
}
