<!--
// automatically count the number of words (for modify profile)
// IMPORTANT:	THIS FUNCTION IS SPAWNED BY THE HM_f_StartIt IN THE MENU SYSTEM (HierMenus) 
function updateProfile( objWordCountField ) {
	// Update the word count stat on loading the page (blur the form field object)
	with (objWordCountField) {
		focus(); // replicate a user's actions of focusing and leaving the field
		blur();
	}
}
//-->