// agelessheadingj.js

// js script to print top of page incl logo
// on all ageless formula pages


function header () {

  var line;
  line  = "<p >";
  line += "  <table border=0 bordercolor=green width=100% >";
  line += "    <tr>";
  line += "      <td align=center colspan=4 >";
  line += "        <font color=orangered size=6> <b>The &nbsp;</b>";
  line += "      </td>";
  line += "    </tr>";
  line += "    <tr>";
  line += "      <td width=40% align=center >";
  line += "        <font color=orangered size=6 > <b>Ageless </b></font>";
  line += "      </td>";
  line += "      <td align=center>";
  line += "        <table border=0 bordercolor=blue>";
  line += "          <tr></td>";
  line += "          <td align=center bgcolor=white >";
  line += "            <img src=\"../agelessformula/agelesslogo.gif\" ";
  line += "            width=100 height=100 ></td>";
  line += "          <td></td></tr>";
  line += "        </table>";
  line += "      </td>";
  line += "      <td height=0 >";
  line += "        <br>";
  line += "      </td>";
  line += "      <td width=40% align=center >";
  line += "        <font color=orangered size=6 > <b>Formula</b></font>";
  line += "      </td>";
  line += "    </tr>";
  line += "    <tr>";
  line += "      <td align=center colspan=4><font color=orangered size=6>";
  line += "                                         <b>Company</b></font>";
  line += "      </td>";
  line += "    </tr>";
  line += "    <tr> <td  colspan=4 > <br> </td></tr>";
  line += "  </table>";
  line += "</p>";
  document.write ( line );

}


function notice ( ) {

  var checkref;

  checkref = document.referrer.indexOf ( "alphaselect" );
  if ( checkref == -1 )
    print_notice ( );

}


function print_notice ( ) {

    line  = "<p >";
    line += "<table height=\"50\" border=\"1\" bordercolor=\"red\" ";
    line += "  cellpadding=\"20\" bgcolor=\"#ffff99\" width=100% >";
    line += "  <tr><td width=\"100%\" align=\"center\">";
    line += "    <h3>Please Note</h3>";
    line += "    These pages represent an imaginary company designed for";
    line += "    <br><b>demonstration purposes only</b><br>as part of the";
    line += "    <a href=\"../examples.html\" ";
    line += "           onClick=\"this.blur()\">examples</a> ";
    line += "     section of the";
    line += "    <a href=\"../\" onClick=\"this.blur()\" >";
    line += "     AlphaSelect 2000</a> "; 
    line += "     website"; 
    line += "  </td></tr>";
    line += "</table>";
    line += "</p>";
    document.write ( line );

}


function vlog () {
  
  var line  = "<img height=\"1\" width=\"1\" src=\"/cgi-bin/vlog.pl\?";
  var loc   = document.location;
  var rfrr  = document.referrer;
      line += "loc=";
      line += loc;
      line += "\&";
      line += "rfrr=";
      line += rfrr;
      line += "\" >";
  document.write ( line );

} // end function vlog ()
