var looper = 0;
document.write("<form name=\"tidBitForm\">");
document.write("<select name=\"chooseTidBit\">");
commandStr = "\n<option value=\"#\"> === Choose A TidBit ===";
document.write(commandStr);
for (looper=0;looper<tidBitTablei;looper++)
{
commandStr = "\n<option value=\""+tidBitTable[looper]+"\"> "+tidBitTableTitle[looper];
document.write(commandStr);
}
document.write("</select>");
commandStr = "<a href=\"JavaScript:getTidBit()\" class=\"style6\"> Get </a>";
document.write(commandStr);
commandStr = "&nbsp;&nbsp;&nbsp;<a href=\"http://goldborder.com\" class=\"style6\" target=\"_top\"> Return To GoldBorder </a>";
document.write(commandStr);
document.write("</form>");

function getTidBit()
 {
 document.location = document.tidBitForm.chooseTidBit[document.tidBitForm.chooseTidBit.selectedIndex].value;
 }
