/*----------------------------------------------------------------*
 *
 *  JBN-III Shop Mall & Mall 
 *      for Jungbo.Net
 *
 *  Copyright (C) 2000 JUNGBO.NET Co.,
 *          e-mail     : jungbo@jungbo.net
 *
 *  EC Hosting Service Provider : Jungbo.Net
 *          Programmer : Min kwan, Lee
 *          e-mail     : najo@jungbo.net
 *
 *----------------------------------------------------------------*/
var sRepeat=null;

function doScrollerIE(dir, src, amount)
{
	if (amount==null) amount=10;
	if (dir=="up")
		document.all[src].scrollTop-=amount;
	else
		document.all[src].scrollTop+=amount;
	
	if (sRepeat==null)
		sRepeat = setInterval("doScrollerIE('" + dir + "','" + src + "'," + amount + ")",100);
	
	return false;
}
window.document.onmouseout = new Function("clearInterval(sRepeat);sRepeat=null");
window.document.ondragstart = new Function("return false");