/*************************************************************************
  This code is from Dynamic Web Coding at www.dyn-web.com
  Copyright 2001-4 by Sharon Paine 
  See Terms of Use at www.dyn-web.com/bus/terms.html
  regarding conditions under which you may use this code.
  This notice must be retained in the code as is!
*************************************************************************/
function initScrollLayers(scrollnum) 
{
	for (var i=1; i <= _scrollbar_id; i++)
	{
		if (i == scrollnum)
		{
			var wndo = new dw_scrollObj('wn' + i, 'lyr' + i, null);
			wndo.setUpScrollbar("dragBar" + i, "track" + i, "v", 1, 1);
			break;
		}
	}
}
/************************************************************************/
