// We can't get to onload, since it's tucked away in the header. Instead, we'll 
// just attach the event, below.

// The normal (Firefox, Opera) way
if(window.addEventListener)
	window.addEventListener('load',doMore,false);

// For IE, which has to be different
if(window.attachEvent)
	window.attachEvent('onload',doMore);

function doMore() {

	for(i = 0; i < 20; i++) {
		var box = document.getElementById('js' + i);
		if(box) {
			var name = box.name.substring(6, box.name.length - 6);
			report(name);
		}
	}
	
}
