<!--
// Module: IFRAME SCROLLER FUNCTION
// Scripted: Tim Raines
// Support: http://support.raines.com.au/
// Created Date: 29-08-05 
//-----------------------------------------------------------------

var t_id;

function btn_Scroll(frame_i,increase,direction) {
  if (t_id) 
  clearTimeout(t_id);
  
  if (window.frames[frame_i]) {
    if (direction == "v") window.frames[frame_i].scrollBy(0, increase);
    else window.frames[frame_i].scrollBy(increase, 0);
    t_id = setTimeout("btn_Scroll('" + frame_i + "'," + increase + ",'" + direction + "')", 20);
  }
}

function btn_StopScroll() { 
if (t_id) 
clearTimeout(t_id); 
}

//-------------------End of SCROLL Module---------------------------
-->