
<!--
  // Copyright 1999 Rietta.  All Rights Reserved.
  // JavaScript code written by Frank Rietta
  function BuildTag()
  {
    var strCode = "<meta name=\"robots\" content=\"";

    // Toggle Checked State
    if(document.RoboTag.chkNoIndex.checked)
    {
      strCode += "noindex, ";
    }
    else
    {
      strCode += "index, ";
    }

    // Toggle Checked State
    if(document.RoboTag.chkNoFollow.checked)
    {
      strCode += "nofollow\">";
    }
    else
    {
      strCode += "follow\">";
    }

    document.RoboTag.txtMetaCode.value = strCode;
  }


//-->

