/*
<fusedoc fuse="focusOnload.js">
	<responsibilities>
		When page loads, put cursor into target input if empty. Use in body onLoad event.
	</responsibilities>
	<properties>
		<history type="create" date="Wed Apr 30 2003"/>
	</properties>
</fusedoc>
*/
function focusOnload(inputID){
	var input	=	document.getElementById(inputID);
	if(input.value == ""){
		input.focus();
	}
}
