	stpoint=0;
	step=5
	tout=10;
	var myID;
	var moveDiv;
	var isIE=(document.all)?1:0;
	function makeObj(obj){
		if (isIE)
		{
			this.style=document.all(obj).style;
			this.allheight=document.all(obj).offsetHeight;
			this.desY;
		}
		else
		{
			this.style=eval('document.divBorder.document.'+obj);
			this.allheight=this.style.document.height;
			this.desY;
		}
	}
	function objInit(obj){
	moveDiv=new makeObj(obj);
	moveDiv.desY=stpoint;
	moveDiv.style.top=moveDiv.desY;
	}
	
	function moveUp(){
		clearInterval(myID);
		myID=setInterval("moveIT(step)",tout);
	}
	function moveDown(){
		clearInterval(myID);
		myID=setInterval("moveIT(-step)",tout);
	}
	function moveIT(step){
		if ((moveDiv.desY+step<-moveDiv.allheight+180) || (moveDiv.desY+step>0))
		{
			stopIT();
		}
		else{
			moveDiv.style.top=moveDiv.desY+step;
			moveDiv.desY=moveDiv.desY+step;
		}
	}
	function stopIT(){
		clearInterval(myID);
	}
//onload=objInit;	
