// This code is the property of Webs Unlimited, Inc.http://websunlimited.com
// Copyright 1999, 2000, 2001 All rights reserved
// It may not be used without explicit licensing
var oScroll = null;sTemp="";function PerformScroll(name,value,interval) {var oContent = thenamedgrp[name];var iHeight = oContent.get_height();var iTop = oContent.get_top();if(oBrowser.ns5) iTop = parseInt(oContent.css1.style.top);if(value < 0 ) {  if(!oBrowser.ns5 && iHeight <= Math.abs(iTop)){ return; }  oContent.set_top(iTop + value);} else {  if(iTop < 0) {    oContent.set_top(iTop + value);  } else {    return;  }}oScroll = setTimeout('PerformScroll(\"' + name + "\"," + value + ',' + interval + ');',interval);}function CeaseScroll() {clearTimeout(oScroll);}
