//code for iframe scrollbars
var timer;
var pos=0;
var inc=3;
//function to scroll page down
function pagescroll() {
  pos=pos-inc; 
  if(pos<0 || pos>300){
  move.style.top=pos;
  timer = window.setTimeout("pagescroll()" , 10);//this makes the movement scroll, not jump, and how fast it goes
	}
 else 
	if(pos>0 || pos<1500)
	 {
    	stop;
  	}	
}


//function to scroll page up
function pagescroll2() {
  pos=pos+inc; 
  if(pos<0 || pos>1500){
  move.style.top=pos;
  timer = window.setTimeout("pagescroll2()" , 10); //this makes the movement scroll, not jump, and how fast it goes
	}
 else 
	if(pos>0 || pos<1500)
	 {
    	stop;
  	}	
}

//Function to stop the movement
function stop()
{
	clearTimeout(timer);
}
//Function is called by -onmouseup- event
document.onmouseup = stop;
