// 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.all.messagediv.offsetHeight;				
	if (document.all('hr0')!=null)
	{HrCursorTop=document.all('hr0').offsetTop;	
	}				
	if (yukseklik==0) {setTimeout("ayarla()",60)};				
}

function dongu()
{
	if (ust<=-yukseklik) {ust=dikeyuzunluk};
	if (scrolling) 
	{
	ust=ust-1;
	document.all.messagediv.style.top=ust;
	}
	if (ust==-HrCursorTop)
	{	
	cursorchange();
	interval=setTimeout("dongu()",waitingspeed)
	}
	else
	{
	interval=setTimeout("dongu()",speed)
	}
}

function cursorchange()
{
	HrCursor=HrCursor+1;
	if (document.all('hr'+HrCursor)!=null)
	{ HrCursorTop=document.all('hr'+HrCursor).offsetTop;	
	}
	else
	{
	HrCursor=0;
	HrCursorTop=0;
	if (document.all('hr0')!=null)
		{HrCursorTop=document.all('hr0').offsetTop;
		}
	}				
}

function NewsWrite(SubDikeyuzunluk,SubSpeed,SubWaitingspeed)
{
dikeyuzunluk=SubDikeyuzunluk
speed=SubSpeed
waitingspeed=SubWaitingspeed
scrolling=true
document.all('messagediv').innerHTML='<label onmousemove="javascript:scrolling=false;" onmouseout="javascript:scrolling=true;" > '
  + document.all('messagediv').innerHTML +'</label>'
ayarla();
dongu();	
}