
function WriteToTopFrame(strNames) {
  if (top != self) {
    if (document.all)
    {
      top.Loc.document.all.Location.innerHTML = "You are at: " + strNames;
    }
    else if (document.layers)
    {
      top.Loc.document.Layer1.document.open();
      top.Loc.document.Layer1.document.write("<P align=right>You are at: " + strNames + "</P>");
      top.Loc.document.Layer1.document.close();
    } else
    {
      top.Loc.document.getElementById('Location').innerHTML = strNames;
    }
  }
}



