<!--
// Created with Matrikz's HTML TextGradient 4.0
// Copyright © 2000 by Matrikz aka ghettostepper
// E-Mail: Matrikz@topmail.de
// URL: http://myHomepage.home.pages.de
// Please leave this comment here

    var CharCount = 17;
    var LineCount = CharCount -2;
    var RotateCount = CharCount *2 -3;
    var GlobalIndex = 0;

    var ColorArray = new Array(CharCount);
    var RotateArray = new Array(CharCount *2 -2);
    var TextArray = new Array(CharCount);

    RotateArray[0] = "#FF0000";
    RotateArray[1] = "#DF0020";
    RotateArray[2] = "#BF0040";
    RotateArray[3] = "#9F0060";
    RotateArray[4] = "#7F0080";
    RotateArray[5] = "#60009F";
    RotateArray[6] = "#4000BF";
    RotateArray[7] = "#2000DF";
    RotateArray[8] = "#0000FF";
    RotateArray[9] = "#2020DF";
    RotateArray[10] = "#4040BF";
    RotateArray[11] = "#60609F";
    RotateArray[12] = "#80807F";
    RotateArray[13] = "#9F9F60";
    RotateArray[14] = "#BFBF40";
    RotateArray[15] = "#DFDF20";
    RotateArray[16] = "#FFFF00";
    RotateArray[17] = "#DFDF20";
    RotateArray[18] = "#BFBF40";
    RotateArray[19] = "#9F9F60";
    RotateArray[20] = "#80807F";
    RotateArray[21] = "#60609F";
    RotateArray[22] = "#4040BF";
    RotateArray[23] = "#2020DF";
    RotateArray[24] = "#0000FF";
    RotateArray[25] = "#2000DF";
    RotateArray[26] = "#4000BF";
    RotateArray[27] = "#60009F";
    RotateArray[28] = "#7F0080";
    RotateArray[29] = "#9F0060";
    RotateArray[30] = "#BF0040";
    RotateArray[31] = "#DF0020";

    TextArray[0] = ">G</font>";
    TextArray[1] = ">e</font>";
    TextArray[2] = ">s</font>";
    TextArray[3] = ">c</font>";
    TextArray[4] = ">h</font>";
    TextArray[5] = ">e</font>";
    TextArray[6] = ">n</font>";
    TextArray[7] = ">k</font>";
    TextArray[8] = ">g</font>";
    TextArray[9] = ">u</font>";
    TextArray[10] = ">t</font>";
    TextArray[11] = ">s</font>";
    TextArray[12] = ">c</font>";
    TextArray[13] = ">h</font>";
    TextArray[14] = ">e</font>";
    TextArray[15] = ">i</font>";
    TextArray[16] = ">n</font>";

    function SetTextCol(TGSource) {
        document.all.tgid.innerHTML = TGSource;
    }

    function IncreaseIndex() {
        GlobalIndex++;
        if (GlobalIndex > RotateCount)
            GlobalIndex = 0;
    }

    function ChangeColor() {
        var DummySource = "<font ";
        var OldIndex = GlobalIndex;

        for (i = 0; i < CharCount; ++i) {
            ColorArray[i] = RotateArray[GlobalIndex];
            IncreaseIndex();
        }

        GlobalIndex = OldIndex;
        IncreaseIndex();

        for (i = CharCount; i > 0; i--) {
            DummySource = DummySource +"color=" +ColorArray[i -1] +TextArray[CharCount -i];
            if (i >= 1) {
                DummySource = DummySource +"<font\n";
            }
        }

        SetTextCol(DummySource);

        setTimeout('ChangeColor()', 100);
    }
// -->
