Pastes:99006  Views:1870561 

Languages:

   ASP
   C#
   C++
   HTML
   Java
   PHP
   VB.NET
   Visual Basic 6

more languages available...




Free 3D Engine

 

 

 

 

 

 

Here's the requested code from the pastebin:

Wrap Lines   Use Line Numbers
// Action script...
 
// [Action in Frame 1]
function TTYwriter(target, delay, startInput)
{
    if (startInput)
    {
        target.intervalStart = function ()
        {
            target._visible = true;
            clearInterval(target.intervalID);
            if (!pauseReady)
            {
                keyLock = false;
                cursorSetPos(inputer._x, inputer._y - cursorAdjustY);
                cursorOn(true);
            } // end if
            if (extraBlinkerReady)
            {
                extraBlinkerOn = true;
                extraBlinkerReady = false;
            } // end if
            if (waitVisStart > 0)
            {
                var i = 0;
                while (i < waitVisTotal)
                {
                    var j = waitVisStart + i;
                    eval("char" + j)._visible = true;
                    ++i;
                } // end while
                waitVisStart = 0;
            } // end if
            if (entryMode == 0 && qon == 11)
            {
                glob_vid.attachVideo(glob_ns);
                glob_ns.setBufferTime(3);
                glob_vid._visible = true;
                glob_ns.play("security02.flv");
            } // end if
            if (notesCursor)
            {
                cursorOn(false);
            } // end if
        };
        target.intervalID = setInterval(target, "intervalStart", delay);
    }
    else
    {
        target.interval = function ()
        {
            target._visible = true;
            cursor._x = target._x;
            cursor._y = target._y;
            clearInterval(target.intervalID);
            if (notesCursor)
            {
                cursorOn(false);
            } // end if
        };
        target.intervalID = setInterval(target, "interval", delay);
    } // end else if
    target._visible = false;
} // End of the function
function padnum(num, len, pchar)
{
    var _loc1 = String(num);
    if (pchar == undefined)
    {
        pchar = "0";
    } // end if
    while (_loc1.length < len)
    {
        _loc1 = pchar + _loc1;
    } // end while
    return (_loc1);
} // End of the function
function padstr(num, len, pchar)
{
    var _loc1 = String(num);
    if (pchar == undefined)
    {
        pchar = " ";
    } // end if
    while (_loc1.length < len)
    {
        _loc1 = pchar + _loc1;
    } // end while
    return (_loc1);
} // End of the function
function clearScreen()
{
    if (charIndex > 0)
    {
        var j = 1;
        while (j <= charIndex)
        {
            eval("char" + j)._visible = false;
            ++j;
        } // end while
    } // end if
} // End of the function
function thecakeisalie()
{
    theclip.loadVariables("gdxt.php?what=answer&uid=" + theclip.uid + "&aid=95&answer=cakelie");
    clearScreen();
    charIndex = 1;
    var curyy = 50;
    var char;
    var target = theclip;
    var par = new Array();
    var parlen = 10;
    par[0] = ">";
    par[1] = ">>>&!>>";
    par[2] = "When was the last time you left the building?";
    par[3] = "Has anybody left the building lately?";
    par[4] = "I don\'t know why we\'re in lockdown. I don\'t know who\'s in charge.";
    par[5] = "I did find out a few things, like these terminals don\'t have to";
    par[6] = "tap out characters one at a time. And while we\'re all working";
    par[7] = "on twenty year old equipment, somehow they can afford to build";
    par[8] = "an \'Enrichment Center\'. Check out this security feed.";
    par[9] = "Whatever the hell a \'relaxation vault\' is, it";
    par[10] = "doesn\'t have any doors.";
    var par2 = new Array();
    var par2len = 1;
    par2[0] = "I don\'t think going home is part of our job description anymore.";
    par2[1] = "If a supervisor walks by, press return!";
    charIndex = 1;
    var i = 0;
    while (i <= parlen)
    {
        if (++charIndex > charMaxIndex)
        {
            target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
            ++charMaxIndex;
        } // end if
        char = eval("char" + charIndex);
        char._x = 0;
        char._y = curyy;
        char.field.text = par[i];
        char._visible = true;
        curyy = curyy + format.getTextExtent(char.field.text).height;
        ++i;
    } // end while
    glob_vid._y = curyy;
    glob_vid.attachVideo(glob_ns);
    glob_ns.setBufferTime(3);
    glob_vid._visible = true;
    glob_ns.play("security02.flv");
    curyy = curyy + (glob_vid._height + 20);
    var i = 0;
    while (i <= par2len)
    {
        if (++charIndex > charMaxIndex)
        {
            target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
            ++charMaxIndex;
        } // end if
        char = eval("char" + charIndex);
        char._x = 0;
        char._y = curyy;
        char.field.text = par2[i];
        char._visible = true;
        curyy = curyy + format.getTextExtent(char.field.text).height;
        curyy = curyy + format.getTextExtent(char.field.text).height;
        ++i;
    } // end while
} // End of the function
function notesdisplay()
{
    notesCursor = true;
    theclip.loadVariables("gdxt.php?what=answer&uid=" + theclip.uid + "&aid=95&answer=cakelie");
    clearScreen();
    placeText(theclip, -1, 20, cjhistory[notesPage].question, format, 3);
    cursonOn(false);
} // End of the function
function bosskey()
{
    clearScreen();
    var basey = 50;
    var curyy = basey;
    var maxy = 0;
    var curx = 0;
    var char;
    var target = theclip;
    charIndex = 1;
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "B8    (L) TOTAL                                                        ";
    char.field.backgroundColor = 6749952;
    char.field.background = true;
    char.field.textColor = 0;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    ++charIndex;
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "                                                                ";
    char.field.backgroundColor = 6749952;
    char.field.background = true;
    char.field.textColor = 0;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    ++charIndex;
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "            A          B          C          D          E";
    char.field.backgroundColor = 6749952;
    char.field.background = true;
    char.field.textColor = 0;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    basey = curyy;
    var i = 1;
    while (i < 22)
    {
        if (++charIndex > charMaxIndex)
        {
            target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
            ++charMaxIndex;
        } // end if
        char = eval("char" + charIndex);
        char._x = 0;
        char._y = curyy;
        char.field.text = padnum(i, 5, " ");
        char.field.backgroundColor = 6749952;
        char.field.background = true;
        char.field.textColor = 0;
        char._visible = true;
        if (curx == 0)
        {
            curx = format.getTextExtent(char.field.text).width + 4;
        } // end if
        curyy = curyy + format.getTextExtent(char.field.text).height;
        ++i;
    } // end while
    curyy = basey;
    var i = 1;
    while (i < 22)
    {
        if (++charIndex > charMaxIndex)
        {
            target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
            ++charMaxIndex;
        } // end if
        char = eval("char" + charIndex);
        char._x = curx;
        char._y = curyy;
        char.field.text = padstr(" ", 56);
        char.field.backgroundColor = 0;
        char.field.background = true;
        char.field.textColor = 6749952;
        char._visible = true;
        curyy = curyy + format.getTextExtent(char.field.text).height;
        ++i;
    } // end while
    curyy = basey;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "     ITEM      UNITS      PER-U       EXT          ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "     ----      -----      -----      ------        ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "    FLOUR         50      21.50     1075.00        ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "INTUB-XLG          1 974,999.99  974,999.99         ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "TACK-THMB         75       0.02        1.50    ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx;
    char._y = curyy;
    char.field.text = "                                 ----------        ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx + 70;
    char._y = curyy;
    char.field.text = "TOTAL";
    char.field.backgroundColor = 6749952;
    char.field.background = true;
    char.field.textColor = 0;
    char._visible = true;
    if (++charIndex > charMaxIndex)
    {
        target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    char._x = curx + 153;
    char._y = curyy;
    char.field.text = "            976,076.49         ";
    char.field.backgroundColor = 0;
    char.field.background = true;
    char.field.textColor = 6749952;
    char._visible = true;
    curyy = curyy + format.getTextExtent(char.field.text).height;
} // End of the function
function logout()
{
    getURL("javascript:if (window.home) {window.home()} else {window.location.replace(\"http://www.steampowered.com/\")}");
} // End of the function
function playPortal()
{
    getURL("http://www.youtube.com/watch?v=0h50K2NVJHM");
} // End of the function
function initCake(target)
{
    target.cakeInterval = function ()
    {
        if (cakeimg1._visible)
        {
            cakeimg1._visible = false;
        }
        else if (random(cakeRandom) == 5 && entryMode == 2)
        {
            cakeimg1._x = random(500);
            cakeimg1._y = random(400);
            cakeimg1._visible = true;
        } // end else if
        if (hintOn)
        {
            hintScale = hintScale + hintStep;
            if (hintScale < hintMin)
            {
                hintScale = hintMin;
                hintStep = hintStep * -1;
            } // end if
            if (hintScale > hintMax)
            {
                hintScale = hintMax;
                hintStep = hintStep * -1;
            } // end if
            hint.field._alpha = hintScale;
        } // end if
        if (pauseReady)
        {
            ++pauseCounter;
            if (pauseCounter > pauseLength)
            {
                pauseReady = false;
                pauseFunction();
            } // end if
        } // end if
    };
    target.intervalIDCursor = setInterval(target, "cakeInterval", 50);
} // End of the function
function initCursor(target, tFormat)
{
    cursor = target.attachMovie("cursorImage", "cursor1", target.getNextHighestDepth());
    cursor._visible = false;
    cursor._x = 400;
    cursor._y = 550;
    cursorIsOn = false;
    target.cursorInterval = function ()
    {
        if (cursorIsOn)
        {
            if (cursorBlink)
            {
                cursorBlink = false;
            }
            else
            {
                cursorBlink = true;
            } // end else if
            cursor._visible = cursorBlink;
            if (extraBlinkerOn)
            {
                if (!cursorblink && random(5) == 2)
                {
                    var _loc1 = random(40) + 3;
                    if (random(2) == 1)
                    {
                        extraBlinker.field.text = extraBlinker.field.text.substr(0, _loc1) + random(10) + extraBlinker.field.text.substr(_loc1 + 1);
                    }
                    else
                    {
                        var _loc2 = chr(97 + random(20));
                        extraBlinker.field.text = extraBlinker.field.text.substr(0, _loc1) + _loc2 + extraBlinker.field.text.substr(_loc1 + 1);
                    } // end if
                } // end else if
                extraBlinker._visible = cursorBlink;
            } // end if
        } // end if
    };
    target.intervalIDCursor = setInterval(target, "cursorInterval", 250);
} // End of the function
function cursorOn(con)
{
    cursor._visible = con;
    cursorBlink = false;
    cursorIsOn = con;
} // End of the function
function cursorSetPos(x, y)
{
    cursor._x = x;
    cursor._y = y;
} // End of the function
function formatQuestion()
{
    var ts = "";
    if (qon < 51)
    {
        ts = "Form FORMS-EN-2873-FORM - Page " + qon + "^^";
    } // end if
    if (questions[qon].type == "T")
    {
        placeText(theclip, 0, 20, ts + questions[qon].question + "^^> ", format, 25);
        return;
    } // end if
    if (pageOffset > 0)
    {
        placeText(theclip, -1, 20, ts + questions[qon].question + "^^", format, 1);
    }
    else
    {
        placeText(theclip, -1, 20, ts + questions[qon].question + "^^", format, 15);
    } // end else if
    var ln = questions[qon].choices.length;
    var basey = lastPlaceY;
    var curyy = basey;
    var maxy = 0;
    var curx = 0;
    var char;
    waitVisStart = charIndex + 1;
    waitVisTotal = 0;
    var xadd = 180;
    var xcols = 3;
    if (ln > 150 || ln <= 48)
    {
        xadd = 240;
        xcols = 2;
    } // end if
    var padit = String(ln).length;
    var i = 1 + pageOffset;
    while (i < ln)
    {
        if (++charIndex > charMaxIndex)
        {
            theclip.attachMovie("letter", "char" + charIndex, theclip.getNextHighestDepth());
            ++charMaxIndex;
        } // end if
        char = eval("char" + charIndex);
        ++waitVisTotal;
        char._x = curx;
        char._y = curyy;
        char.field.text = padnum(i, padit) + "] " + questions[qon].choices[i];
        char._visible = false;
        curyy = curyy + format.getTextExtent(char.field.text).textFieldHeight;
        if (curyy > maxy)
        {
            maxy = curyy;
        } // end if
        if (curyy > 500)
        {
            maxy = 500;
            curyy = basey;
            curx = curx + xadd;
            if (curx > xadd * xcols)
            {
                break;
            } // end if
        } // end if
        ++i;
    } // end while
    if (maxy == 500)
    {
        maxy = maxy + format.getTextExtent("W").textFieldHeight;
    } // end if
    maxy = maxy + format.getTextExtent("W").textFieldHeight;
    if (++charIndex > charMaxIndex)
    {
        theclip.attachMovie("letter", "char" + charIndex, theclip.getNextHighestDepth());
        ++charMaxIndex;
    } // end if
    char = eval("char" + charIndex);
    ++waitVisTotal;
    char._x = 0;
    char._y = maxy;
    char._visible = false;
    if (questions[qon].choices.length > 104)
    {
        char.field.text = "[" + questions[qon].choices.length + " total choices : PGUP/PGDN to navigate]> ";
    }
    else
    {
        char.field.text = "> ";
    } // end else if
    inputer._y = maxy;
    inputer._x = format.getTextExtent(char.field.text).width;
    cursorSetPos(inputer._x, inputer._y - cursorAdjustY);
    cursorBaseX = inputer._x;
} // End of the function
function placeText(target, x, y, banner, tFormat, delay)
{
    var lastChar = "";
    var char;
    if (hintOn)
    {
        hintOn = false;
        hint.field._alpha = 100;
    } // end if
    keyLock = true;
    inputer._x = 600;
    inputer._y = 400;
    var noInput = false;
    if (x < 0)
    {
        x = 0;
        noInput = true;
    } // end if
    if (charIndex > 0)
    {
        var j = 1;
        while (j <= charMaxIndex)
        {
            eval("char" + j)._visible = false;
            ++j;
        } // end while
    } // end if
    charIndex = 0;
    var orgx = x;
    var orgy = y;
    var tmps = "";
    var turnBlinkerOn = false;
    if (entryMode == 0 && (qon == 2 || qon == 3))
    {
        inputer.field.password = true;
    }
    else
    {
        inputer.field.password = false;
    } // end else if
    var i = 0;
    while (i < banner.length)
    {
        var onchar = banner.substr(i, 1);
        switch (onchar)
        {
            case "^":
            {
                y = y + tFormat.getTextExtent(char.field.text).textFieldHeight;
                if (y > 500)
                {
                    y = orgy;
                    orgx = orgx + 150;
                } // end if
                x = orgx;
                break;
            } 
            case "@":
            {
                onchar = "[" + theclip.uid + "]";
                turnBlinkerOn = true;
            } 
            default:
            {
                if (++charIndex > charMaxIndex)
                {
                    target.attachMovie("letter", "char" + charIndex, target.getNextHighestDepth());
                    ++charMaxIndex;
                } // end if
                char = eval("char" + charIndex);
                if (turnBlinkerOn)
                {
                    extraBlinker = char;
                    extraBlinkerReady = true;
                    turnBlinkerOn = false;
                } // end if
                var tmpx = 0;
                tmps = "";
                var j = i;
                while (j < banner.length)
                {
                    if (banner.substr(j, 1) == " " || banner.substr(j, 1) == "^")
                    {
                        break;
                    } // end if
                    tmps = tmps + banner.substr(j, 1);
                    ++j;
                } // end while
                tmpx = x + tFormat.getTextExtent(tmps).width;
                char.field.text = onchar;
                if (entryMode == 2 && !hintOn && hintOffset < hintMessage.length && (lastChar == " " || lastChar == "") && onchar == hintMessage.substr(hintOffset, 1))
                {
                    ++hintOffset;
                    hintOn = true;
                    hint = char;
                } // end if
                if (tmpx > 650)
                {
                    y = y + tFormat.getTextExtent(char.field.text).textFieldHeight;
                    if (y > 500)
                    {
                        y = orgy;
                        orgx = orgx + 150;
                    } // end if
                    x = orgx;
                } // end if
                char._x = x;
                char._y = y;
                x = x + tFormat.getTextExtent(char.field.text).width;
                var timer = i * delay;
                if (delay > 0)
                {
                }
                else
                {
                    char._visible = true;
                } // end else if
                lastChar = onchar;
            } 
        } // End of switch
        ++i;
    } // end while
    lastPlaceX = x;
    lastPlaceY = y;
    if (!noInput)
    {
        inputer._y = y;
        inputer._x = x;
        cursorSetPos(inputer._x, inputer._y - cursorAdjustY);
        cursorBaseX = inputer._x;
    } // end if
    if (delay == 0)
    {
        if (pauseReady)
        {
            keyLock = true;
            cursorOn(false);
        }
        else
        {
            keyLock = false;
            cursorOn(true);
        } // end else if
    }
    else
    {
        cursorOn(true);
        var i = 1;
        while (i <= charIndex)
        {
            var timer = i * delay;
            TTYwriter(eval("char" + i), timer, i == charIndex);
            ++i;
        } // end while
    } // end else if
} // End of the function
function switchPage()
{
    pageOffset = 0;
    inputer.field.text = "";
    cursorOn(false);
    switch (entryMode)
    {
        case 0:
        {
            ++qon;
            placeText(theclip, 0, 50, qar[qon], format, qdelay[qon]);
            break;
        } 
        case 1:
        {
            placeText(theclip, 0, 50, gladosHeader + gladosMessage + gladosPrompt, format, gladosSpeed);
            break;
        } 
        case 2:
        {
            ++qon;
            formatQuestion();
            break;
        } 
        case 3:
        {
            bosskey();
            break;
        } 
        case 4:
        {
            thecakeisalie();
            break;
        } 
        case 5:
        {
            notesdisplay();
            break;
        } 
    } // End of switch
} // End of the function
function ltrim(s)
{
    while (s.length > 0 && s.substr(0, 1) == " ")
    {
        s = s.substr(1);
    } // end while
    return (s);
} // End of the function
function processInput0()
{
    var _loc2 = inputer.field.text;
    var _loc1 = false;
    var _loc3 = false;
    switch (qon)
    {
        case 8:
        {
            qon = 0;
        } 
        case 0:
        {
            theclip.loadVariables("gdxt.php?what=login&uid=" + theclip.uid);
            _loc1 = _loc2 == "LOGON" || _loc2 == "LOGIN" || _loc2 == "USER";
            if (_loc2 == "HELP" || _loc2 == "?")
            {
                _loc1 = true;
                qon = 7;
            } // end if
            break;
        } 
        case 1:
        {
            _loc1 = _loc2.length > 2;
            is_cj = _loc2 == "CJOHNSON";
            if (_loc1)
            {
                theclip.loadVariables("gdxt.php?what=answer&uid=" + theclip.uid + "&aid=99&answer=" + _loc2);
            } // end if
            break;
        } 
        case 3:
        {
            qon = 2;
        } 
        case 2:
        {
            theclip.loadVariables("gdxt.php?what=password&uid=" + theclip.uid);
            if (is_cj)
            {
                _loc1 = _loc2 == "TIER3";
                is_cj = _loc1 && is_cj;
                if (is_cj)
                {
                    gladosHeader = "GLaDOS v1.07a (c) 1982 Aperture Science, Inc.";
                    gladosPrompt = "^^ADMIN> ";
                } // end if
            }
            else
            {
                _loc1 = _loc2 == "PORTAL" || _loc2 == "PORTALS";
            } // end else if
            if (_loc1)
            {
                entryMode = 1;
            }
            else
            {
                _loc1 = true;
            } // end else if
            break;
        } 
        case 4:
        {
            if (_loc2 == "CONTINUE")
            {
                _loc1 = true;
            } // end if
            if (_loc2 == "QUIT")
            {
                qon = 0;
                _loc1 = true;
                entryMode = 1;
            } // end if
            break;
        } 
        case 5:
        {
            if (_loc2 == "CONTINUE")
            {
                applyAIDNum = 0;
                applyAIDText = 90;
                _loc1 = true;
                qon = 0;
                entryMode = 2;
                extraBlinkerOn = false;
            } // end if
            if (_loc2 == "QUIT")
            {
                extraBlinkerOn = false;
                qon = 0;
                _loc1 = true;
                entryMode = 1;
            } // end if
            break;
        } 
        case 9:
        {
            if (_loc2 == "THECAKEISALIE")
            {
                entryMode = 4;
                _loc1 = true;
            }
            else
            {
                qon = 9;
                _loc1 = true;
            } // end else if
            break;
        } 
        case 11:
        {
            glob_ns.seek(0);
            glob_ns.pause();
            glob_vid._visible = false;
            entryMode = 3;
            _loc1 = true;
            break;
        } 
        case 10:
        {
            break;
        } 
        case 50:
        {
            notesPage = notesPage + 1;
            if (notesPage > maxNotesPage)
            {
                entryMode = 1;
                inputer.field.text = "";
            } // end if
            _loc1 = true;
            break;
        } 
        default:
        {
            _loc1 = true;
        } 
    } // End of switch
    if (_loc1)
    {
        switchPage();
    }
    else
    {
        inputer.field.text = "";
    } // end else if
} // End of the function
function processInput5()
{
    var _loc2 = inputer.field.text;
    var _loc1 = false;
    var _loc3 = false;
    notesPage = notesPage + 1;
    if (notesPage > maxNotesPage)
    {
        entryMode = 1;
        notesCursor = false;
    } // end if
    _loc1 = true;
    switchPage();
} // End of the function
function processInput1()
{
    var _loc2 = ltrim(inputer.field.text);
    hintOffset = 0;
    if (_loc2 == "")
    {
        return;
    } // end if
    var _loc3 = false;
    var _loc1 = _loc2.split(" ");
    gladosMessage = "";
    switch (_loc1[0])
    {
        case "THECAKEISALIE":
        {
            entryMode = 4;
            break;
        } 
        case "DIR":
        case "CATALOG":
        case "DIRECTORY":
        case "LIST":
        case "LS":
        case "CAT":
        {
            if (is_cj)
            {
                gladosMessage = "                                                                                                                ^                                                                                                                                                                                                                      ^DISK VOLUME 255 [WORKSTATION CJOHNSON]^^     I  019  APPLY.EXE^     I  004  NOTES.EXE^^2 FILE(S) IN 23 BLOCKS^^";
            }
            else
            {
                gladosMessage = "                                                                                                                ^                                                                                                                                                                                                                      ^DISK VOLUME 255 [NEW EMPLOYEE WORKSTATION]^^     I  019  APPLY.EXE^^1 FILE(S) IN 19 BLOCKS^^";
            } // end else if
            break;
        } 
        case "IP":
        {
            gladosMessage = " ^^uid:" + theclip.uid + "^";
            break;
        } 
        case "HELP":
        case "LIB":
        case "?":
        {
            if (is_cj)
            {
                gladosMessage = " ^^LIB^     NOTES^     APPEND^     ATTRIB^     COPY^     DIR^     ERASE^     FORMAT^     INTERROGATE^     LIB^     PLAY^     RENAME^     TAPEDISK";
            }
            else
            {
                gladosMessage = " ^^LIB^     APPEND^     ATTRIB^     COPY^     DIR^     ERASE^     FORMAT^     INTERROGATE^     LIB^     PLAY^     RENAME^     TAPEDISK";
            } // end else if
            break;
        } 
        case "LOGOUT":
        case "BYE":
        case "LOGOFF":
        case "VALVE":
        {
            snd.attachSound("goodbye");
            snd.setVolume(20);
            snd.onSoundComplete = logout;
            qon = -1;
            entryMode = 0;
            snd.start();
            break;
        } 
        case "APPEND":
        case "ATTRIB":
        case "COPY":
        case "FORMAT":
        case "ERASE":
        case "RENAME":
        {
            gladosMessage = "                                                                                                                ^                                                                                                                                                                                                                      ^ERROR 15 [Disk is write protected]";
            break;
        } 
        case "PLAY":
        {
            if (_loc1.length == 1)
            {
                gladosMessage = "^^ERROR 03 [What would you like to play?]";
            }
            else if (_loc1[1] == "PORTAL")
            {
                snd.attachSound("goodbye");
                snd.setVolume(20);
                snd.onSoundComplete = playPortal;
                qon = -1;
                entryMode = 0;
                snd.start();
                break;
            } // end else if
            break;
        } 
        case "INTERROGATE":
        {
            if (_loc1.length == 1)
            {
                gladosMessage = "^^ERROR 02 [Command requires at least one parameter]";
            }
            else if (is_cj)
            {
                gladosMessage = "^^ERROR 07 [Unknown Employee]";
            }
            else
            {
                gladosMessage = "^^ERROR 01 [Illegal attempt to initiate disciplinary action]";
            } // end else if
            break;
        } 
        case "TAPEDISK":
        {
            gladosMessage = "^^ERROR 18 [User not authorized to transfer system tapes]";
            break;
        } 
        case "NOTES":
        case "NOTES.EXE":
        {
            if (is_cj)
            {
                qon = 50;
                entryMode = 5;
                notesPage = 1;
            }
            else
            {
                gladosMessage = "^^ERROR 24 [File \'" + _loc1[0] + "\' not found]";
            } // end else if
            break;
        } 
        case "APPLY":
        case "APPLY.EXE":
        {
            qon = 3;
            entryMode = 0;
            break;
        } 
        default:
        {
            gladosMessage = "^^ERROR 24 [File \'" + _loc1[0] + "\' not found]";
        } 
    } // End of switch
    switchPage();
} // End of the function
function processInput2()
{
    var _loc1 = inputer.field.text;
    var _loc2 = false;
    if (qon >= questionstot)
    {
        qon = 8;
        entryMode = 0;
        switchPage();
        return;
    } // end if
    if (questions[qon].type != "T")
    {
        if (Number(_loc1) > 0 && Number(_loc1) < questions[qon].choices.length)
        {
            _loc2 = true;
            ++applyAIDNum;
            theclip.loadVariables("gdxt.php?what=answer&uid=" + theclip.uid + "&aid=" + String(applyAIDNum) + "&answer=" + _loc1);
        } // end if
    }
    else if (qon != 51)
    {
        ++applyAIDText;
        theclip.loadVariables("gdxt.php?what=answer&uid=" + theclip.uid + "&aid=" + String(applyAIDText) + "&answer=" + _loc1);
        _loc2 = true;
    } // end else if
    if (_loc1 == "QUIT")
    {
        qon = 0;
        entryMode = 1;
        _loc2 = true;
    } // end if
    if (_loc2)
    {
        switchPage();
    }
    else
    {
        inputer.field.text = "";
    } // end else if
} // End of the function
var questions = new Array();
questions[1] = new Object();
questions[1].question = "If given a choice, what would you like to be called?";
questions[1].type = "T";
questions[1].choices = new Array();
questions[1].choices[1] = "Name:";
questions[2] = new Object();
questions[2].question = "It is important to consult a physician before starting an Aperture Science Enrichment Center program. If one or more of the statements listed below applies to you, please contact your supervisor to secure permission to consult a physician before beginning an Enrichment Center program. Pick the condition that most applies to you.";
questions[2].type = "C";
questions[2].choices = new Array();
questions[2].choices[1] = "dizziness";
questions[2].choices[2] = "shortness of breath";
questions[2].choices[3] = "problems waking up in the morning";
questions[2].choices[4] = "problems staying up 48 hours straight";
questions[2].choices[5] = "have not previously performed an enrichment center program";
questions[3] = new Object();
questions[3].question = "Sally, Dwayne, Anthony, David, and Franklin are, collectively, exactly 10 years apart in age. Sally\'s is two years older than David. David\'s favorite letter is \'g\'. Anthony\'s favorite letter is also \'g\', but Dwayne has no preference, insisting that he likes all the letters equally except for \'s\'.  What is Franklin\'s favorite letter?";
questions[3].type = "R";
questions[3].choices = new Array();
questions[3].choices[1] = "a";
questions[3].choices[2] = "b";
questions[3].choices[3] = "c";
questions[3].choices[4] = "d";
questions[3].choices[5] = "e";
questions[3].choices[6] = "f";
questions[3].choices[7] = "g";
questions[3].choices[8] = "h";
questions[3].choices[9] = "i";
questions[3].choices[10] = "j";
questions[3].choices[11] = "k";
questions[3].choices[12] = "l";
questions[3].choices[13] = "m";
questions[3].choices[14] = "n";
questions[3].choices[15] = "o";
questions[3].choices[16] = "p";
questions[3].choices[17] = "q";
questions[3].choices[18] = "r";
questions[3].choices[19] = "t";
questions[3].choices[20] = "u";
questions[3].choices[21] = "v";
questions[3].choices[22] = "w";
questions[3].choices[23] = "x";
questions[3].choices[24] = "y";
questions[3].choices[25] = "z";
questions[4] = new Object();
questions[4].question = "Which of the following best describes your pain?";
questions[4].type = "R";
questions[4].choices = new Array();
questions[4].choices[1] = "Nondescript";
questions[4].choices[2] = "Shooting";
questions[4].choices[3] = "Stabbing";
questions[4].choices[4] = "Burning";
questions[4].choices[5] = "Prickly";
questions[4].choices[6] = "Aching";
questions[4].choices[7] = "Sharp";
questions[4].choices[8] = "Dull";
questions[5] = new Object();
questions[5].question = "What is your favorite color?";
questions[5].type = "R";
questions[5].choices = new Array();
questions[5].choices[1] = "Peach-orange";
questions[5].choices[2] = "Powder blue";
questions[5].choices[3] = "Cyan";
questions[5].choices[4] = "Chartreuse";
questions[5].choices[5] = "Jade";
questions[5].choices[6] = "Dark coral";
questions[5].choices[7] = "Navy blue";
questions[5].choices[8] = "Pale mauve";
questions[5].choices[9] = "Linen";
questions[5].choices[10] = "Dark goldenrod";
questions[5].choices[11] = "Pumpkin";
questions[5].choices[12] = "Dark cerulean";
questions[5].choices[13] = "Zinnwaldite";
questions[5].choices[14] = "Rust";
questions[5].choices[15] = "Lavender Blush";
questions[5].choices[16] = "Green";
questions[5].choices[17] = "Lilac";
questions[5].choices[18] = "Blue";
questions[5].choices[19] = "Midnight Blue";
questions[5].choices[20] = "Tan";
questions[5].choices[21] = "Carmine";
questions[5].choices[22] = "Amber";
questions[5].choices[23] = "Indigo";
questions[5].choices[24] = "Pale red-violet";
questions[5].choices[25] = "Lemon Cream";
questions[5].choices[26] = "Pale chestnut";
questions[5].choices[27] = "Bondi Blue";
questions[5].choices[28] = "Gamboge";
questions[5].choices[29] = "Gold";
questions[5].choices[30] = "Steel blue";
questions[5].choices[31] = "Tangerine";
questions[5].choices[32] = "Lime";
questions[5].choices[33] = "Seashell";
questions[5].choices[34] = "Pale pink";
questions[5].choices[35] = "Dark turquoise";
questions[5].choices[36] = "Pale cornflower blue";
questions[5].choices[37] = "Denim";
questions[5].choices[38] = "Emerald";
questions[5].choices[39] = "Burnt Sienna";
questions[5].choices[40] = "Buff";
questions[5].choices[41] = "Brown";
questions[5].choices[42] = "Pear";
questions[5].choices[43] = "Orangatang Red";
questions[5].choices[44] = "Chestnut";
questions[5].choices[45] = "Cerulean";
questions[5].choices[46] = "Dark Tea Green";
questions[5].choices[47] = "Dark salmon";
questions[5].choices[48] = "Sandy brown";
questions[5].choices[49] = "Dark tan";
questions[5].choices[50] = "Pine Green";
questions[5].choices[51] = "Flax";
questions[5].choices[52] = "Ochre";
questions[5].choices[53] = "Bronze";
questions[5].choices[54] = "Klein Blue";
questions[5].choices[55] = "Pale Sandy Brown";
questions[5].choices[56] = "Teal";
questions[5].choices[57] = "Azure";
questions[5].choices[58] = "Dark Terra cotta";
questions[5].choices[59] = "International orange";
questions[5].choices[60] = "Red";
questions[5].choices[61] = "Orange";
questions[5].choices[62] = "Safety Orange";
questions[5].choices[63] = "Coral";
questions[5].choices[64] = "Scarlet";
questions[5].choices[65] = "Light brown";
questions[5].choices[66] = "Olive Drab";
questions[5].choices[67] = "Magenta";
questions[5].choices[68] = "Bistre";
questions[5].choices[69] = "Cerulean blue";
questions[5].choices[70] = "Dodger blue";
questions[5].choices[71] = "Cobalt";
questions[5].choices[72] = "Violet-eggplant";
questions[5].choices[73] = "Amethyst";
questions[5].choices[74] = "Sapphire";
questions[5].choices[75] = "Ultramarine";
questions[5].choices[76] = "Fuchsia";
questions[5].choices[77] = "Heliotrope";
questions[5].choices[78] = "Cinnamon";
questions[5].choices[79] = "Chocolate";
questions[5].choices[80] = "Goldenrod";
questions[5].choices[81] = "Sea Green";
questions[5].choices[82] = "Pastel pink";
questions[5].choices[83] = "Persian blue";
questions[5].choices[84] = "Mountbatten pink";
questions[5].choices[85] = "Pale carmine";
questions[5].choices[86] = "Bright green";
questions[5].choices[87] = "Turquoise";
questions[5].choices[88] = "Gray";
questions[5].choices[89] = "Gray-Tea Green";
questions[5].choices[90] = "Dark blue";
questions[5].choices[91] = "Cerise";
questions[5].choices[92] = "Pale brown";
questions[5].choices[93] = "Green-yellow";
questions[5].choices[94] = "Raw umber";
questions[5].choices[95] = "Lavender";
questions[6] = new Object();
questions[6].question = "How do others describe your education?";
questions[6].type = "R";
questions[6].choices = new Array();
questions[6].choices[1] = "Nursery School";
questions[6].choices[2] = "Grade School";
questions[6].choices[3] = "Junior High";
questions[6].choices[4] = "High School";
questions[6].choices[5] = "Some College";
questions[6].choices[6] = "Associates Degree";
questions[6].choices[7] = "Bachelors";
questions[6].choices[8] = "Graduate Degree";
questions[6].choices[9] = "PhD / Post Doctoral";
questions[6].choices[10] = "None";
questions[7] = new Object();
questions[7].question = "What is your current living situation?";
questions[7].type = "R";
questions[7].choices = new Array();
questions[7].choices[1] = "Live Alone";
questions[7].choices[2] = "Live With Roommate (s)";
questions[7].choices[3] = "Live With Kids";
questions[7].choices[4] = "Live With Parents";
questions[8] = new Object();
questions[8].question = "Do you require any jewelry for health reasons?";
questions[8].type = "R";
questions[8].choices = new Array();
questions[8].choices[1] = "Yes";
questions[8].choices[2] = "No";
questions[9] = new Object();
questions[9].question = "Do you require socks to be part of your uniform?";
questions[9].type = "R";
questions[9].choices = new Array();
questions[9].choices[1] = "Yes";
questions[9].choices[2] = "No";
questions[10] = new Object();
questions[10].question = "Do you prefer long or short sleeves?";
questions[10].type = "R";
questions[10].choices = new Array();
questions[10].choices[1] = "Long Sleeves";
questions[10].choices[2] = "Short Sleeves";
questions[10].choices[3] = "Sleeveless / Shirtless / No Preference";
questions[11] = new Object();
questions[11].question = "Does your illness prevent you from working?";
questions[11].type = "R";
questions[11].choices = new Array();
questions[11].choices[1] = "Yes";
questions[11].choices[2] = "No";
questions[12] = new Object();
questions[12].question = "Not including periods of mandatory silence, what is the longest you have gone voluntarily without talking?";
questions[12].type = "R";
questions[12].choices = new Array();
questions[12].choices[1] = "1 Day";
questions[12].choices[2] = "2-5 Days";
questions[12].choices[3] = "7-14 Days";
questions[12].choices[4] = "14-30 Days";
questions[12].choices[5] = "30-90 Days";
questions[12].choices[6] = "90 Days - 6 Months";
questions[12].choices[7] = "1 Year";
questions[12].choices[8] = "Greater Than 1 Year";
questions[13] = new Object();
questions[13].question = "Do you require music to perform simple tasks?";
questions[13].type = "R";
questions[13].choices = new Array();
questions[13].choices[1] = "Yes";
questions[13].choices[2] = "No";
questions[14] = new Object();
questions[14].question = "Your favorite color is:";
questions[14].type = "R";
questions[14].choices = new Array();
questions[14].choices[1] = "Camouflage green";
questions[14].choices[2] = "Sangria";
questions[14].choices[3] = "Salmon";
questions[14].choices[4] = "Pale magenta";
questions[14].choices[5] = "Swamp green";
questions[14].choices[6] = "Pastel green";
questions[14].choices[7] = "Carrot";
questions[14].choices[8] = "Burgundy";
questions[14].choices[9] = "Mint Green";
questions[14].choices[10] = "Wheat";
questions[14].choices[11] = "Aqua";
questions[14].choices[12] = "Thistle";
questions[14].choices[13] = "Vermilion";
questions[14].choices[14] = "School bus yellow";
questions[14].choices[15] = "Khaki";
questions[14].choices[16] = "Cornflower blue";
questions[14].choices[17] = "Dark light blue";
questions[14].choices[18] = "Dark slate gray";
questions[14].choices[19] = "Mustard";
questions[14].choices[20] = "Hot pink";
questions[14].choices[21] = "Dark pastel green";
questions[14].choices[22] = "Dark brown";
questions[14].choices[23] = "Papaya whip";
questions[14].choices[24] = "Dark spring green";
questions[14].choices[25] = "Cooked umber";
questions[14].choices[26] = "Dark chestnut";
questions[14].choices[27] = "Dark Khaki";
questions[14].choices[28] = "Russet";
questions[14].choices[29] = "Burnt umber";
questions[14].choices[30] = "Wisteria";
questions[14].choices[31] = "Beige";
questions[14].choices[32] = "Selective yellow";
questions[14].choices[33] = "Viridian";
questions[14].choices[34] = "Old Gold";
questions[14].choices[35] = "Mauve";
questions[14].choices[36] = "Dark violet";
questions[14].choices[37] = "Dark pink";
questions[14].choices[38] = "Aquamarine";
questions[14].choices[39] = "Slate gray";
questions[14].choices[40] = "Royal Blue";
questions[14].choices[41] = "Terra cotta";
questions[14].choices[42] = "Blaze Orange";
questions[14].choices[43] = "Dark Indigo";
questions[14].choices[44] = "Violet";
questions[14].choices[45] = "Dark tangerine";
questions[14].choices[46] = "Saffron";
questions[14].choices[47] = "Olive";
questions[14].choices[48] = "Tenné ";
questions[14].choices[49] = "Peach";
questions[14].choices[50] = "Maroon";
questions[14].choices[51] = "Silver";
questions[14].choices[52] = "Robin egg blue";
questions[14].choices[53] = "Pink";
questions[14].choices[54] = "Asparagus";
questions[14].choices[55] = "Purple";
questions[14].choices[56] = "Pale Blue";
questions[14].choices[57] = "Dark green";
questions[14].choices[58] = "Yankee Yellow";
questions[14].choices[59] = "Navajo white";
questions[14].choices[60] = "Fern green";
questions[14].choices[61] = "Bright violet";
questions[14].choices[62] = "Corn";
questions[14].choices[63] = "Eggplant";
questions[14].choices[64] = "Bright turquoise";
questions[14].choices[65] = "Gray-asparagus";
questions[14].choices[66] = "Moss green";
questions[14].choices[67] = "Taupe";
questions[14].choices[68] = "Dark Olive";
questions[14].choices[69] = "Red-violet";
questions[14].choices[70] = "Burnt Orange";
questions[14].choices[71] = "Orchid";
questions[14].choices[72] = "Peach-yellow";
questions[14].choices[73] = "Spring Green";
questions[14].choices[74] = "Lemon";
questions[14].choices[75] = "Puce";
questions[14].choices[76] = "Periwinkle";
questions[14].choices[77] = "Celadon";
questions[14].choices[78] = "Dark Scarlet";
questions[14].choices[79] = "Yellow";
questions[14].choices[80] = "Black";
questions[14].choices[81] = "Alizarin Crimson";
questions[14].choices[82] = "Prussian blue";
questions[14].choices[83] = "Malachite";
questions[14].choices[84] = "Dark Peach";
questions[14].choices[85] = "White";
questions[14].choices[86] = "Brass";
questions[14].choices[87] = "Cardinal";
questions[14].choices[88] = "Alice Blue";
questions[14].choices[89] = "Cream";
questions[14].choices[90] = "Tea Green";
questions[14].choices[91] = "Sepia";
questions[14].choices[92] = "Crimson";
questions[14].choices[93] = "Copper";
questions[14].choices[94] = "Pink-orange";
questions[15] = new Object();
questions[15].question = "Lying about my favorite color makes me feel:";
questions[15].type = "R";
questions[15].choices = new Array();
questions[15].choices[1] = "Sorry";
questions[15].choices[2] = "Not Sorry";
questions[16] = new Object();
questions[16].question = "Are you plagued by suspicions that other people, including coworkers and relatives, may be doing things behind your back that will hurt you?";
questions[16].type = "R";
questions[16].choices = new Array();
questions[16].choices[1] = "Yes";
questions[16].choices[2] = "No";
questions[17] = new Object();
questions[17].question = "What is your  favorite meal?";
questions[17].type = "R";
questions[17].choices = new Array();
questions[17].choices[1] = "Lunch";
questions[17].choices[2] = "Dinner";
questions[18] = new Object();
questions[18].question = "Which pre-Christian mathematician is not correctly matched to his home city?";
questions[18].type = "R";
questions[18].choices = new Array();
questions[18].choices[1] = "Thales of Miletus";
questions[18].choices[2] = "Anaximander of Miletus";
questions[18].choices[3] = "Pythagoras of Samos";
questions[18].choices[4] = "Anaximenes of Miletus";
questions[18].choices[5] = "Cleostratus of Tenedos";
questions[18].choices[6] = "Anaxagoras of Clazomenae";
questions[18].choices[7] = "Zeno of Elea";
questions[18].choices[8] = "Antiphon of Rhamnos";
questions[18].choices[9] = "Oenopides of Chios";
questions[18].choices[10] = "Hippocrates of Chios";
questions[18].choices[11] = "Hippias of Elis";
questions[18].choices[12] = "Theodorus of Cyrene";
questions[18].choices[13] = "Philolaus of Croton";
questions[18].choices[14] = "Democritus of Abdera";
questions[18].choices[15] = "Hippasus of Metapontum";
questions[18].choices[16] = "Archytas of Tarentum";
questions[18].choices[17] = "Theaetetus of Athens";
questions[18].choices[18] = "Leodamas of Thasos";
questions[18].choices[19] = "Eudoxus of Cnidos";
questions[18].choices[20] = "Callipus of Cyzicus";
questions[18].choices[21] = "Xenocrates of Chalcedon";
questions[18].choices[22] = "Heraclides of Pontus";
questions[18].choices[23] = "Bryson of Heraclea";
questions[18].choices[24] = "Theudius of Magnesia";
questions[18].choices[25] = "Eudemus of Rhodes";
questions[18].choices[26] = "Autolycus of Pitane";
questions[18].choices[27] = "Aristarchus of Samos";
questions[18].choices[28] = "Archimedes of Syracuse";
questions[18].choices[29] = "Philo of Byzantium";
questions[18].choices[30] = "Nicoteles of Cyrene";
questions[18].choices[31] = "Eratosthenes of Cyrene";
questions[18].choices[32] = "Conon of Samos";
questions[18].choices[33] = "Apollonius of Perga";
questions[18].choices[34] = "Dositheus of Alexandria";
questions[18].choices[35] = "Dionysodorus of Amisus";
questions[18].choices[36] = "Diocles of Carystus";
questions[18].choices[37] = "Hypsicles of Alexandria";
questions[18].choices[38] = "Hipparchus of Nicaea";
questions[18].choices[39] = "Zeno of Sidon";
questions[18].choices[40] = "Geminus of Rhodes";
questions[19] = new Object();
questions[19].question = "Please choose the description that best describes your personality:";
questions[19].type = "R";
questions[19].choices = new Array();
questions[19].choices[1] = "Childish";
questions[19].choices[2] = "Oafish";
questions[19].choices[3] = "Stolid";
questions[19].choices[4] = "Timid";
questions[19].choices[5] = "Reserved";
questions[19].choices[6] = "Conceited";
questions[19].choices[7] = "Scornful";
questions[19].choices[8] = "Boastful";
questions[19].choices[9] = "Sleepy";
questions[19].choices[10] = "Stable";
questions[20] = new Object();
questions[20].question = "A cake can be sliced into more than seven pieces by making only four diameter cuts through its center.";
questions[20].type = "R";
questions[20].choices = new Array();
questions[20].choices[1] = "True";
questions[20].choices[2] = "False";
questions[21] = new Object();
questions[21].question = "Other than a large egret, what wild animal would you like to domesticate? NOTE: Several choices, including, but not limited to, \'Large Egret\', may trigger an investigation. Your supervisor has no further information about instigating animals or the investigatory process, though, upon request, your supervisor can provide further details about his or her authorized prophylactic unfamiliarity with procedure.";
questions[21].type = "R";
questions[21].choices = new Array();
questions[21].choices[1] = "Aardvark";
questions[21].choices[2] = "Aardwolf";
questions[21].choices[3] = "Abalone";
questions[21].choices[4] = "Abyssinian cat";
questions[21].choices[5] = "Achilles tang";
questions[21].choices[6] = "Acorn barnacle";
questions[21].choices[7] = "Acorn weevil";
questions[21].choices[8] = "Acorn woodpecker";
questions[21].choices[9] = "Adams stag-horned beetle";
questions[21].choices[10] = "Addax";
questions[21].choices[11] = "Adelie penguin";
questions[21].choices[12] = "Admiral butterfly";
questions[21].choices[13] = "African augur buzzard";
questions[21].choices[14] = "African bush viper";
questions[21].choices[15] = "African civet";
questions[21].choices[16] = "African clawed frog";
questions[21].choices[17] = "African elephant";
questions[21].choices[18] = "African fish eagle";
questions[21].choices[19] = "African golden cat";
questions[21].choices[20] = "African ground hornbill";
questions[21].choices[21] = "African harrier hawk";
questions[21].choices[22] = "African hornbill";
questions[21].choices[23] = "African jacana";
questions[21].choices[24] = "African mole snake";
questions[21].choices[25] = "African pied kingfisher";
questions[21].choices[26] = "African porcupine";
questions[21].choices[27] = "African rock python";
questions[21].choices[28] = "African wild cat";
questions[21].choices[29] = "African wild dog";
questions[21].choices[30] = "Agama";
questions[21].choices[31] = "Agouti";
questions[21].choices[32] = "Airedale";
questions[21].choices[33] = "Aisan pied starling";
questions[21].choices[34] = "Akita";
questions[21].choices[35] = "Alabama map turtle";
questions[21].choices[36] = "Alaska jingle";
questions[21].choices[37] = "Albacore tuna";
questions[21].choices[38] = "Albatross";
questions[21].choices[39] = "Albertosaurus";
questions[21].choices[40] = "Albino";
questions[21].choices[41] = "Aldabra tortoise";
questions[21].choices[42] = "Allens big-eared bat";
questions[21].choices[43] = "Alligator gar";
questions[21].choices[44] = "Alligator snapping turtle";
questions[21].choices[45] = "Allosaurus";
questions[21].choices[46] = "Alpaca";
questions[21].choices[47] = "Amazon dolphin";
questions[21].choices[48] = "Amazon parrot";
questions[21].choices[49] = "Amazon tree boa";
questions[21].choices[50] = "Amber pen shell";
questions[21].choices[51] = "American alligator";
questions[21].choices[52] = "American avocet";
questions[21].choices[53] = "American badger";
questions[21].choices[54] = "American bittern";
questions[21].choices[55] = "American black vulture";
questions[21].choices[56] = "American cicada";
questions[21].choices[57] = "American crayfish";
questions[21].choices[58] = "American crocodile";
questions[21].choices[59] = "American crow";
questions[21].choices[60] = "American goldfinch";
questions[21].choices[61] = "American kestrel";
questions[21].choices[62] = "American lobster";
questions[21].choices[63] = "American marten";
questions[21].choices[64] = "American ratsnake";
questions[21].choices[65] = "American red squirrel";
questions[21].choices[66] = "American river otter";
questions[21].choices[67] = "American robin";
questions[21].choices[68] = "American toad";
questions[21].choices[69] = "American wigeon";
questions[21].choices[70] = "Amethyst gem clam";
questions[21].choices[71] = "Amethyst sunbird";
questions[21].choices[72] = "Amethystine python";
questions[21].choices[73] = "Ammonite";
questions[21].choices[74] = "Amoeba";
questions[21].choices[75] = "Amphibian";
questions[21].choices[76] = "Amur minnow";
questions[21].choices[77] = "Amur ratsnake";
questions[21].choices[78] = "Amur starfish";
questions[21].choices[79] = "Anaconda";
questions[21].choices[80] = "Andean cat";
questions[21].choices[81] = "Andean cock-of-the-rock";
questions[21].choices[82] = "Andean condor";
questions[21].choices[83] = "Anemone crab";
questions[21].choices[84] = "Anemone shrimp";
questions[21].choices[85] = "Angel wing mussel";
questions[21].choices[86] = "Angelfish";
questions[21].choices[87] = "Anglerfish";
questions[21].choices[88] = "Angora";
questions[21].choices[89] = "Angwantibo";
questions[21].choices[90] = "Anhinga";
questions[21].choices[91] = "Animated";
questions[21].choices[92] = "Annas hummingbird";
questions[21].choices[93] = "Anole";
questions[21].choices[94] = "Anopheles";
questions[21].choices[95] = "Antarctic fur seal";
questions[21].choices[96] = "Antarctic giant petrel";
questions[21].choices[97] = "Anteater";
questions[21].choices[98] = "Antelope";
questions[21].choices[99] = "Antelope ground squirrel";
questions[21].choices[100] = "Antipodes green parakeet";
questions[21].choices[101] = "Aoudad";
questions[21].choices[102] = "Apatosaur";
questions[21].choices[103] = "Aphid";
questions[21].choices[104] = "Aplomado falcon";
questions[21].choices[105] = "Aquatic leech";
questions[21].choices[106] = "Arabian oryx";
questions[21].choices[107] = "Arabian wild cat";
questions[21].choices[108] = "Aracari";
questions[21].choices[109] = "Archaeocete";
questions[21].choices[110] = "Archaeopteryx";
questions[21].choices[111] = "Archer fish";
questions[21].choices[112] = "Arctic fox";
questions[21].choices[113] = "Arctic hare";
questions[21].choices[114] = "Arctic wolf";
questions[21].choices[115] = "Argali";
questions[21].choices[116] = "Argentine horned frog";
questions[21].choices[117] = "Argentine ruddy duck";
questions[21].choices[118] = "Argus fish";
questions[21].choices[119] = "Ariel toucan";
questions[21].choices[120] = "Arizona alligator lizard";
questions[21].choices[121] = "Ark shell";
questions[21].choices[122] = "Armadillo";
questions[21].choices[123] = "Armed crab";
questions[21].choices[124] = "Armed nylon shrimp";
questions[21].choices[125] = "Army ant";
questions[21].choices[126] = "Arrow crab";
questions[21].choices[127] = "Arrow worm";
questions[21].choices[128] = "Arrowana";
questions[21].choices[129] = "Asian constable butterfly";
questions[21].choices[130] = "Asian damselfly";
questions[21].choices[131] = "Asian elephant";
questions[21].choices[132] = "Asian lion";
questions[21].choices[133] = "Asian porcupine";
questions[21].choices[134] = "Asian small-clawed otter";
questions[21].choices[135] = "Asian trumpetfish";
questions[21].choices[136] = "Asian water buffalo";
questions[21].choices[137] = "Asiatic mouflon";
questions[21].choices[138] = "Asiatic wild ass";
questions[21].choices[139] = "Assassin bug";
questions[21].choices[140] = "Astarte";
questions[21].choices[141] = "Astrangia coral";
questions[21].choices[142] = "Atlantic black goby";
questions[21].choices[143] = "Atlantic blue tang";
questions[21].choices[144] = "Atlantic ridley turtle";
questions[21].choices[145] = "Atlantic sharpnose puffer";
questions[21].choices[146] = "Atlantic spadefish";
questions[21].choices[147] = "Atlas moth";
questions[21].choices[148] = "Auk";
questions[21].choices[149] = "Aurochs";
questions[21].choices[150] = "Australian curlew";
questions[21].choices[151] = "Australian fur seal";
questions[21].choices[152] = "Australian kestrel";
questions[21].choices[153] = "Australian shelduck";
questions[21].choices[154] = "Australian Silky Terrier";
questions[21].choices[155] = "Avocet";
questions[21].choices[156] = "Axis deer";
questions[21].choices[157] = "Axolotl";
questions[21].choices[158] = "Aye-aye";
questions[21].choices[159] = "Aztec ant";
questions[21].choices[160] = "Azure-winged magpie";
questions[21].choices[161] = "Azure vase";
questions[21].choices[162] = "Babacoot";
questions[21].choices[163] = "Babirusa";
questions[21].choices[164] = "Baboon";
questions[21].choices[165] = "Bactrian camel";
questions[21].choices[166] = "Badger";
questions[21].choices[167] = "Bahama boa";
questions[21].choices[168] = "Bahama Island hutia";
questions[21].choices[169] = "Bahama pintail";
questions[21].choices[170] = "Baikal teal";
questions[21].choices[171] = "Baillon\'s crake";
questions[21].choices[172] = "Balanophylla";
questions[21].choices[173] = "Bald eagle";
questions[21].choices[174] = "Bald ibis";
questions[21].choices[175] = "Bali mynah";
questions[21].choices[176] = "Baltimore oriole";
questions[21].choices[177] = "Band-tailed pigeon";
questions[21].choices[178] = "Banded butterflyfish";
questions[21].choices[179] = "Banded coral shrimp";
questions[21].choices[180] = "Banded pitta";
questions[21].choices[181] = "Banded shrimp";
questions[21].choices[182] = "Bandicoot";
questions[21].choices[183] = "Bannerfish";
questions[21].choices[184] = "Bantam";
questions[21].choices[185] = "Banteng";
questions[21].choices[186] = "Bar jack";
questions[21].choices[187] = "Barb";
questions[21].choices[188] = "Barbary macaque";
questions[21].choices[189] = "Barbary partridge";
questions[21].choices[190] = "Barbet";
questions[21].choices[191] = "Bark bug";
questions[21].choices[192] = "Barking treefrog";
questions[21].choices[193] = "Barn owl";
questions[21].choices[194] = "Barn swallow";
questions[21].choices[195] = "Barnacle";
questions[21].choices[196] = "Barnacle goose";
questions[21].choices[197] = "Barracuda";
questions[21].choices[198] = "Barred hamlet";
questions[21].choices[199] = "Barred owl";
questions[21].choices[200] = "Barrel sponge";
questions[21].choices[201] = "Barrow\'s goldeneye";
questions[21].choices[202] = "Barrows goldeneye";
questions[21].choices[203] = "Basilisk";
questions[21].choices[204] = "Basilosaurus";
questions[21].choices[205] = "Basket sponge";
questions[21].choices[206] = "Basket star";
questions[21].choices[207] = "Basking shark";
questions[21].choices[208] = "Bass";
questions[21].choices[209] = "Basset";
questions[21].choices[210] = "Bat-eared fox";
questions[21].choices[211] = "Bateleur";
questions[21].choices[212] = "Bay scallop";
questions[21].choices[213] = "Beach flea";
questions[21].choices[214] = "Beagle";
questions[21].choices[215] = "Bean goose";
questions[21].choices[216] = "Bear";
questions[21].choices[217] = "Bearded barbet";
questions[21].choices[218] = "Bearded dragon";
questions[21].choices[219] = "Bearded seal";
questions[21].choices[220] = "Beaver";
questions[21].choices[221] = "Bee-eater";
questions[21].choices[222] = "Bee";
questions[21].choices[223] = "Beetle";
questions[21].choices[224] = "Belted kingfisher";
questions[21].choices[225] = "Beluga whale";
questions[21].choices[226] = "Bengal cat";
questions[21].choices[227] = "Bengal monitor";
questions[21].choices[228] = "Bengal tiger";
questions[21].choices[229] = "Bennett\'s tree kangaroo";
questions[21].choices[230] = "Bennett\'s wallaby";
questions[21].choices[231] = "Bentnose macoma";
questions[21].choices[232] = "Betta fish";
questions[21].choices[233] = "Bewick\'s wren";
questions[21].choices[234] = "Bharal";
questions[21].choices[235] = "Bichon Friese";
questions[21].choices[236] = "Big brown bat";
questions[21].choices[237] = "Big cat";
questions[21].choices[238] = "Bighorn sheep";
questions[21].choices[239] = "Billbug";
questions[21].choices[
Syntax Highlighting:  



Copyright 2007 - NoMorePasting.com