
// keylink.js - Topcat Software LLC. [c] 2011
// http://www.topcat.hypermart.net/index.html

if (typeof key === 'undefined') {

    var key = [] // key array

    key['About']              = 'index.html'
    key['ASCII Scan']         = 'asciiscan.html'
    key['Backup Script']      = 'bup.html'
    key['Binary Chop']        = 'binchop.html'
    key['Code Signing']       = 'codesigning.html'
    key['Czar']               = 'czar.html'
    key['Define']             = 'define.html'
    key['Elwood']             = 'elwood.html'
    key['Felix Cipher']       = 'felix.html'
    key['FOLDOC Parser']      = 'foldoc.html'
    key['Fortune']            = 'fortune.html'
    key['Getkey']             = 'getkey.html'
    key['Keylink']            = 'keylink.html'
    key['Mini-xor']           = 'xor.html'
    key['Mirror']             = 'mirror.html'
    key['NVI/VI Cheat Sheet'] = 'vi.html'
    key['Oblique Strategies'] = 'oblique.html'
    key['Popdog']             = 'popdog.html'
    key['RCS Tutorial']       = 'rcs.html'
    key['Right Click FTP']    = 'rightclickftp.html'
    key['ROT13x']             = 'rot13x.html'
    key['Screen Tool']        = 'screentool.html'
    key['Spam Block']         = 'spamblock.html'
    key['TOPIC Database']     = 'topic.html'
    key['Turtle And Snail']   = 'advice.html'
    key['Xmonthly']           = 'xmonthly.html'
    key['root2jpg']           = 'root2jpg.html'
    key['root2xpm']           = 'root2xpm.html'

}

function keylink(s) {

    if (s in key) {
        document.write('<a href=' + key[s] + '>' + s + '</a>')
    }

}


