function genericOnLoad(functionName) {
	alert(typeof window.attachEvent);
	if(typeof window.addEventListener != 'undefined'){
		window.addEventListener('load', functionName, false);
	}
	else if(typeof document.addEventListener != 'undefined'){
		document.addEventListener('load', functionName, false);
	}
	else if(typeof window.attachEvent != 'undefined'){
		window.attachEvent('onload', functionName);
	}
}
function showStatusText(txtText) {alert(txtText);self.status = txtText;}