function scrl(isize,step) {

count = Math.abs(isize / step);
	while(count > 0) {
	scrollBy(step,0);
	count--;
	}
}
