function getheight()
{
  if (document.getElementsByName)
  {
        var anchors = document.getElementsByName("test");

        for (var i=0; i<anchors.length; i++){
                var anchor = anchors[i];

                //anchor.style.margin = '-28px 0 0 0';
                //anchor.setAttribute("class", "blank")
        }
  }
}

