function confirmUpdateUserInfo() {
	if (document.frmUpdateUserInfo.FILE1.value == "" ) {
		alert("Please select the INSITU.MDB database before trying again.");
		return false;
	}
	else if (confirm("Are you sure you want to update the user information?\n\nIf you are sure Click OK to Continue."  )) {
		document.frmUpdateUserInfo.submit();
		return true;
	}
}
