function gen_autofocus(){
	if(document.forms.length > 0){
		if(document.forms[0].elements.length > 0){
			if(document.forms[0].elements[0].type == 'text'){
				document.forms[0].elements[0].focus();
				}
			}
		}
	}

setOnload(gen_autofocus);

