var current_speed = speed

//Jei keisis lango dydis:
function perkrauti() {
	window.location.reload()
}

function news_go() {
	// Jeigu čia NS:
	if (document.layers) {
		setTimeout("window.onresize=perkrauti",450)
		news_init()
	}
}

function news_init(){
	document.news_ilayer.document.news_layer.document.open()
	document.news_ilayer.document.news_layer.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1257"><link rel="stylesheet" href="/styles.css"></head><body>')
	document.news_ilayer.document.news_layer.document.write('<div class=marq>'+tekstas+'</div>')
	document.news_ilayer.document.news_layer.document.write('</body></html>')
	document.news_ilayer.document.news_layer.document.close()

	document.news_ilayer.document.news_layer.top=height
	document.news_ilayer.document.news_layer.visibility="show"
	ilgis2=document.news_ilayer.document.news_layer.document.height

	news_scroll()
}

function news_scroll(){
	if (current_speed>=0){
		if (document.news_ilayer.document.news_layer.top>=ilgis2*(-1)){
			document.news_ilayer.document.news_layer.top-=current_speed
			setTimeout("news_scroll()",85)
		}
		else{
			document.news_ilayer.document.news_layer.top=height
			news_scroll()
		}
	}
	if (current_speed<0){
		if (document.news_ilayer.document.news_layer.top<=height){
			document.news_ilayer.document.news_layer.top-=current_speed
			setTimeout("news_scroll()",85)
		}
		else{
			document.news_ilayer.document.news_layer.top=ilgis2*(-1)
			news_scroll()
		}
	}
}

function news_up(){
	// Jeigu čia NS 4:
	if (document.layers) {
		current_speed=up_speed
	}

	// Jeigu čia IE 4:
	if (document.all) {
		news_marquee.direction='up'
		news_marquee.scrollAmount=up_speed
	}
}

function news_down(){
	// Jeigu čia NS 4:
	// Jeigu čia NS 4:
	if (document.layers) {
		current_speed=down_speed
	}

	// Jeigu čia IE 4:
	if (document.all) {
		news_marquee.direction='down'
		news_marquee.scrollAmount=up_speed
	}
}

function news_normal(){
	// Jeigu čia NS 4:
	if (document.layers) {
		current_speed=speed
	}

	// Jeigu čia IE 4:
	if (document.all) {
		news_marquee.direction='up'
		news_marquee.scrollAmount=speed
	}
}

window.onload=news_go

