function synchTab(frameName) {

  var elList, i;

  // Exit if no frame name was given.

  if (frameName == null)
    return;

  // Check all links.

  elList = document.getElementsByTagName("A");
  for (i = 0; i < elList.length; i++)

    // Check if the link's target matches the frame being loaded.

    if (elList[i].target == frameName) {

   

      if (elList[i].href == window.frames[frameName].location.href) {
        elList[i].className += " activeTab";
        elList[i].blur();
      }
      else
        removeName(elList[i], "activeTab");
    }
}

function removeName(el, name) {

  var i, curList, newList;

  if (el.className == null)
    return;


  newList = new Array();
  curList = el.className.split(" ");
  for (i = 0; i < curList.length; i++)
    if (curList[i] != name)
      newList.push(curList[i]);
  el.className = newList.join(" ");
}




document.write('<table width="269" cellpadding="0" cellspacing="0" ID="Table1"><tr><td colspan="3"><a href="http://www.gopetsamerica.com/gadgets/"><img src="http://www.gopetsamerica.com/scr/vetmed.png" width="269" height="60" style="padding:0px;margin:0px;border-style:none;"></a></td></tr><tr align="center"><td colspan="3" style="border:solid 1px #006600;background-color:#FFFFFF;width:325px;"><div style="width:266;"><div style="width:266;padding-top:5px;"><a href="http://www.gopetsamerica.com/scr/searchcombo.htm" target="tabIframe1"  name="anc3" id="anc3" style="border:solid 1px #5e9bcb;width:85px;height:26px;vertical-align:baseline;padding-top:2px;font-size:8pt;color:#3e6986;font-family:verdana;text-decoration:none;z-index:100;font-weight:normal;">Find by Signs</a>&nbsp;<a href="http://www.gopetsamerica.com/scr/search1.htm" target="tabIframe1"  name="anc1" id="anc1" style="border:solid 1px #5e9bcb;width:105px;height:26px;vertical-align:baseline;padding-top:2px;font-size:8pt;color:#3e6986;font-family:verdana;text-decoration:none;z-index:102;font-weight:normal;">Look Up Term</a>&nbsp;<a href="http://www.gopetsamerica.com/scr/search2.htm" target="tabIframe1"  name="anc3" id="anc3" style="border:solid 1px #5e9bcb;width:55px;height:26px;vertical-align:baseline;padding-top:2px;font-size:8pt;color:#3e6986;font-family:verdana;text-decoration:none;z-index:102;font-weight:normal;">Search</a>&nbsp;</div><div><div><iframe name="tabIframe1" marginheight="0" marginwidth="0" frameborder="0" style="height:80px;width:267px;overflow:hidden;" scrollbar="no"></iframe></div></div></div></td></tr><tr><td colspan="3"><a href="http://www.gopetsamerica.com/gadgets/"><img src="http://www.gopetsamerica.com/scr/med2.png" style="border-style:none;" width="269" height="24"></a></td></tr></table>');