<!--
//lstart = 190 (default size)
lstart = 30
loop = true
scrolls = true
speed = 50
pr_step = 1

function stopscroll(){
	scrolls = false;
}

function startscroll(){
	scrolls = true;
}

function makeObj(obj,nest){
nest=(!nest) ? '':'document.'+nest+'.'
this.css=(document.layers) ? eval(nest+'document.'+obj):eval(obj+'.style')
    this.scrollHeight=document.layers?this.css.document.height:eval(obj+'.offsetHeight')
    this.up=goUp
this.obj = obj + "Object"
eval(this.obj + "=this")
return this
}
function goUp(speed){
		if(parseInt(this.css.top)>-this.scrollHeight){
			if (scrolls)
				this.css.top=parseInt(this.css.top)-pr_step
			setTimeout(this.obj+".up("+speed+")",speed)
		}else if(loop) {
			if (scrolls)
				this.css.top=lstart + 110
			eval(this.obj+".up("+speed+")")
		}
}
function slideInit(){
    oSlide=makeObj('divNews','divCont')
    oSlide.css.top=lstart
    oSlide.up(speed)
}
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src='images/'+a[i];}}
}
//-->