var whacker = 0;


var div = document.createElement( 'div' );
div.id = 'output';
div.style.backgroundColor = 'transparent';

div.style.position = 'absolute';
div.style.top = '76px';
div.style.left = '0px';

div.style.overflow = 'auto';
div.style.whiteSpace = 'pre';
div.style.color = '#AAAAAA';
div.style.zIndex = 0;
div.onscroll = function(e) { if( whacker == 0 ) document.getElementById('scroller').checked = true; else whacker = 0;}

document.body.appendChild( div );

var btn = document.createElement('button');
btn.style.position = 'absolute';
btn.style.bottom = '10px';
btn.style.left = '0px';
btn.style.zIndex = 0;
btn.style.height = '15px';
btn.style.width = '15px';
btn.onclick = function( ) { Send( ); }
document.body.appendChild( btn );
 
for( var n = 0; n < 20; n++ ) {
  var t = document.createTextNode( ' ' );  
  div.appendChild( t );
  var t = document.createElement( 'br' );  
  div.appendChild( t );
}


iframe( 'update.php?s=s&o=o' );

var inp = document.getElementById("input");
inp.focus( );

AdjustHeight( );
