﻿// JScript File

var text_x=0; pos=0;
var l=0;
var arrText=new Array(' Talebinizi Bırakın Emlakçılarımız Sizlere Ulaşsın. Tıklayınız...');
function textticker()
{
        if(text_x==tl.length)
            text_x=0;
                        
        if(pos==0)
        {
            //alert(arrID[text_x] + '-' + text_x);
            document.getElementById('lnkTEXT').href="TalepBirak.aspx";
        }
            
        document.getElementById('spnTEXT').innerHTML=tl[text_x].substring(0,pos)+ "_";

        if(pos++==l)
        {
                pos=0;
                setTimeout("textticker()",4000);
                text_x++;
                if(text_x==tl.length)
                        text_x=0;
                l=tl[text_x].length;
        } else
                setTimeout("textticker()",50);
}

function StartTexte()
{
if (top.location != self.location) top.location = self.location;
    if(arrText!=null && arrText.length>0)
    {
        tl=arrText;
        l=tl[0].length;
        textticker();
    }
    else
        document.getElementById('spnTEXT').innerHTML="";
}

