<!--     if (window != window.top) {top.location.href = location.href;}

var IE=0;
var OB = 0;
var y=0;
var prevy=0;
var hop = 0;
var scratch;
var workInterval = 0;
var scrollInterval = -2;
var uagent=navigator.userAgent;

if (uagent.indexOf("MSIE") > 0)
        { 
          IE=1;
        }

if (uagent.indexOf("Mozilla 4.04") > 0)
        {
          OB=1;
        }

function goScroll()
      {
         if( OB )
              {
	return;
               }

         if( IE == 1 )
              {
	document.writeln( '<DIV ID="floatScroll" style="position:absolute; left: 0; top:0;">' );
               } else {
                  document.writeln( '<LAYER name="floatScroll">' );
               }

         document.writeln('<FORM name="kontrols">');
         document.writeln('<input type=button name=hide value=&nbsp;X&nbsp; onclick=parent.hide()>');
         document.writeln('<input type=button name=pause value=&nbsp;\/\\&nbsp; onclick=parent.pause()>');
         document.writeln('<br>');

         document.writeln('<select name="sk" onChange="release();" onFocus="haltit();"');
         document.writeln('<option value="0">Off');
         document.writeln('<option value="1">10');
         document.writeln('<option value="12"> 9');
         document.writeln('<option value="25"> 8');
         document.writeln('<option value="50"> 7');
         document.writeln('<option value="100"> 6');
         document.writeln('<option value="150" selected> 5');
         document.writeln('<option value="200"> 4');
         document.writeln('<option value="400"> 3');
         document.writeln('<option value="600"> 2');
         document.writeln('<option value="800"> 1');
         document.writeln('</select>');
         document.writeln('</FORM><BR>');

         if( IE == 1 )
               {
	document.writeln( '</DIV>' );
               } else {
	document.writeln( '</LAYER>' );
               }
	document.writeln( '<br><br>' );

          if( IE == 1 )
               {
	document.kontrols.sk.options[0].selectedIndex=3;
	document.kontrols.sk.options[1].selectedIndex=1;
               } else {
	document.layers[0].document.kontrols.sk.options[0].selectedIndex=3;
               }
          hold();
          return true;
       }

function setSpeed()      {         if( document.all )               {	return document.all.kontrols.sk.options[document.all.kontrols.sk.selectedIndex].value;                } else {	return document.layers[0].document.kontrols.sk.options[document.layers[0].document.kontrols.sk.selectedIndex].value;                }       }
function setScroll()
       {
         if( IE == 1 )
              {
	y = getY() + 1;
               } else {
	y = getY() + 3;
               }
         top.scroll(0,y);
         holdwork();
         return true;
       }


function getY()
       {
         if( IE == 1 )
              {
	return document.body.scrollTop;
               } else {
	return top.pageYOffset;
               }
        }


function holdwork()
       {
          if( IE == 1 )
               {
	obj = document.all.floatScroll.style;
               } else {
	obj = document.floatScroll;
               }
          obj.top = getY();
        }


function hold()
        {
           holdwork();
           workInterval = setInterval( "holdwork()", 1000 );
         }


function hide()
        {
           if( document.all )
               {
	document.all.floatScroll.style.visibility = "hidden";
                } else {
	document.floatScroll.visibility = "hide";
                }
           clearInterval( workInterval );
           return false;
        }


function pause()
        {
           if( setSpeed() == 0 )
               {
	return;
               }
	if( hop == 0 )
               {
	release();
                } else {
	haltit();
                }
            return true;
        }

function haltit()
      {
         if( scrollInterval != -2 )
             {
	clearInterval( scrollInterval );
              }
         hop = 0;
         if( document.all )
              {
	document.all.pause.value = " \/\\ ";
               } else {
	           document.layers[0].document.kontrols.pause.value = " \/\\ ";
               }
      }

function release()
      {
         if( scrollInterval != -2)
              {
	clearInterval( scrollInterval );
               }
         hop = 1;
         if( document.all )
               {
	document.all.pause.value = " [] ";
                } else
	    {
	        document.layers[0].document.kontrols.pause.value = " [] ";
	     }

          if( setSpeed() != 999 )
                 {
	  scrollInterval = setInterval( "setScroll()", setSpeed() );
                  } 
        }

//-->
