<!--

	var n = (document.layers) ? 1:0;
	var ie = (document.all) ? 1:0;

	function makeObj(obj,nest){
    		nest=(!nest) ? '':'document.'+nest+'.'
    		this.css=(n) ? eval(nest+'document.'+obj):eval(obj+'.style')
		this.left=b_getleft; this.top=b_gettop
    		return this
		}
	
	function b_getleft(){
		var gleft=(n) ? eval(this.css.left):eval(this.css.pixelLeft);
		return gleft;
		}
	function b_gettop(){
		var gleft=(n) ? eval(this.css.top):eval(this.css.pixelTop);
		return gleft;
		}

	var loop=true;
	var timer=0;
		function scrollIt(dir,speed,num){
		text=new makeObj('info', 'content')
		if(timer) clearTimeout(timer)
		if(!dir && text.top()>-limit)text.css.top=text.top()-speed
		else if(dir && text.top()<0)text.css.top=text.top()+speed
		if(loop) timer=setTimeout("scrollIt("+dir+","+speed+","+num+")",50)
		}
//-->
