// JavaScript Document






var max=0;
function textlist()
{
        max=textlist.arguments.length;
        for (i=0; i<max; i++)
                this[i]=textlist.arguments[i];
}

tl=new textlist
(
		"Welcome: Dear Friends, Brothers and Sisters in the Lord.            ",
		" You are on the Website of The Great Commission Evangelistic Ministries .       ",
        " Our aim is to reach all Souls for Christ! One Soul at a time !          ",
        " Our desire is that no one should perish, but have everlasting life      ",
        " Our Message is Peace, Purity and Power in Christ !         ",
        " We hope you find materials here, that will help you deepen your walk with the Lord!         ",
        " Remember - Jesus is coming soon - Be Prepared!         "
);

var x=0; pos=0;
var l=tl[0].length;

function textticker()
{
        document.form1.textfeld.value=tl[x].substring(0,pos)+"_";

        if(pos++==l)
        {
                pos=0;
                setTimeout("textticker()",1000);
                x++;
                if(x==max)
                        x=0;
                l=tl[x].length;
        } else
                setTimeout("textticker()",50);
}
