defaultStep=1;
step=defaultStep;
//alert ("asda");
function startscrlo(id)
{
  document.getElementById(id).style.overflow='hidden';
  document.getElementById(id).style.height='152px';
} 
function startscrlo1(id)
{
  var ax1=document.getElementById(id);
  ax1.style.display='block';

} 

function scrollDivDown(id)
{
  clearTimeout(timerDown) ;
  document.getElementById(id).scrollTop+=step;
  timerDown=setTimeout("scrollDivDown('"+id+"')",7);
} 

function scrollDivUp(id)
{
  clearTimeout(timerUp);
  document.getElementById(id).scrollTop-=step ;
  timerUp=setTimeout("scrollDivUp('"+id+"')",7);
} 

timerDown="" ;
timerUp="" ;

function stopMe()
{
  clearTimeout(timerDown) ;
  clearTimeout(timerUp);
} 

document.onmousemove=function()
{
  stopMe();
}

