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

//place our event hook
window.onload = function() {
	//find the edit buttons
	var FirstNameField = Footprint.Page.GetNodesByDataSet("field", "name_first").GetNode();
	if(FirstNameField) {
		FirstNameField.focus();
	}
};

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