<!-- 
var mousex = 0;
var mousey = 0;
var algor;


var rc = document.getElementById('resultlist');
var lijn = null;
function check(){
	lijn = document.getElementById('lijn');
	if (lijn){
		
		lijn.style.display='';
		if (rc){

			lijn.style.width = gw(rc) +'px';
			lijn.style.left = getRealPos(rc,'x');
		}else{
			lijn.style.width='400px';
		}
		
		doall();
		
	}else{
		setTimeout('check();',500);
	}
}


function followmouse1(){	
	getMouseXY();
	lijn.style.top = mousey -1;

	
} 

function followmouse2(e){lijn.top=e.y+1 } 
function doall(){
	if (document.all) 
	 document.onmousemove=followmouse1 
	else if (document.layers){ 
	 window.captureEvents(Event.MOUSEMOVE) 
	 window.onmousemove=followmouse2 
	} 
}

function regenerate(){ window.location.reload() } 

function regenerate2(){ setTimeout("window.onresize=regenerate",400) } 

check();

//if ((document.all&&!window.print)||document.layers) window.onload=regenerate2;

// -->
