//##########################################################################################

//place our event hook
window.onload = function() {
	//find the edit buttons
	var UsernameField = PageTemplate.GetNodesByAttribute("data-field","username").GetNode();
	if(UsernameField) {
		UsernameField.focus();
	}
};

//##########################################################################################