// tanimlamak icin basla
var interval;
yukseklik=0; 
ust=yukseklik;
HrCursor=0;
HrCursorTop=0;
dikeyuzunluk=200
speed=75
waitingspeed=1000
// tanimlamak icin end

function ayarla()
{
	yukseklik=document.getElementById('messagediv').offsetHeight;				
	if (document.getElementById('hr0')!=null)
	{HrCursorTop=document.getElementById('hr0').offsetTop;	
	}				
	if (yukseklik==0) {setTimeout("ayarla()",60)};				
}

function dongu()
{
	if (ust<=-yukseklik) {ust=dikeyuzunluk};
	if (scrolling) 
	{
	ust=ust-1;
	document.getElementById('messagediv').style.top=ust +'px';
	}
	if (ust==-HrCursorTop)
	{	
	cursorchange();
	interval=setTimeout("dongu()",waitingspeed)
	}
	else
	{
	interval=setTimeout("dongu()",speed)
	}
}

function cursorchange()
{
	HrCursor=HrCursor+1;
	if (document.getElementById('hr'+HrCursor)!=null)
	{ HrCursorTop=document.getElementById('hr'+HrCursor).offsetTop;	
	}
	else
	{
	HrCursor=0;
	HrCursorTop=0;
	if (document.getElementById('hr0')!=null)
		{HrCursorTop=document.getElementById('hr0').offsetTop;
		}
	}				
}

function NewsWrite(SubDikeyuzunluk,SubSpeed,SubWaitingspeed)
{
dikeyuzunluk=SubDikeyuzunluk
speed=SubSpeed
waitingspeed=SubWaitingspeed
scrolling=true
document.getElementById('messagediv').innerHTML='<label onmousemove="javascript:scrolling=false;" onmouseout="javascript:scrolling=true;" > '
  + document.getElementById('messagediv').innerHTML +'</label>'
ayarla();
dongu();	
}