% dim aryFeaturedArticles(10, 2) dim intFeaturedCount dim strRecipeArticleId dim strRecipeArticleName dim strFitnessArticleId dim strFitnessArticleName dim strEatingArticleId dim strEatingArticleName dim adoRs artConnect intFeaturedCount = 0 set adoRs = artGetFeaturedArticles(OrderByName) do while not adoRs.EOF and intFeaturedCount < 10 aryFeaturedArticles(intFeaturedCount, 0) = adoRs.Fields("articleID").Value aryFeaturedArticles(intFeaturedCount, 1) = adoRs.Fields("name").Value intFeaturedCount = intFeaturedCount + 1 adoRs.MoveNext() loop set adoRs = nothing set adoRs = artGetMostRecentArticle("Cookbook", "") if not adoRs.EOF then strRecipeArticleId = adoRs.Fields("articleID").Value strRecipeArticleName = adoRs.Fields("name").Value end if set adoRs = nothing set adoRs = artGetMostRecentArticle("Fitness", "") if not adoRs.EOF then strFitnessArticleId = adoRs.Fields("articleID").Value strFitnessArticleName = adoRs.Fields("name").Value end if set adoRs = nothing set adoRs = artGetMostRecentArticle("Healthy Eating", "") if not adoRs.EOF then strEatingArticleId = adoRs.Fields("articleID").Value strEatingArticleName = adoRs.Fields("name").Value end if set adoRs = nothing %>
High Blood Pressure and You
The number of both men and women with high blood pressure increases rapidly in older age groups. By age 65, more than half of all Americans have high blood pressure.
How high is your risk?
Who has high blood pressure?
One in five Americans - one in four adults - has high blood pressure. That means 50 million Americans aged 6 and older have high blood pressure. (Based on NHANES)
Simply put, when your blood pressure is high, your heart has to work harder than normal, which puts both the heart and the arteries under a greater strain.
What happens if high blood pressure is not controlled?
You've probably heard that high blood pressure can contribute to heart disease, stroke and kidney failure. You may understand the risk better if you can visualize what's going on inside your body.
What can you do to control high blood pressure?
| Increase physical activity | |
| Manage your weight | |
| Quit smoking | |
| Decrease stress in your life | |
Tracking your vital signs on-line can provide a simple and convenient way to help you and your physician better mange your health condition. And the information, resources and tools provided within Lifeclinic.com will allow you to take a more active role in managing your medical conditions and healthcare.
What is Lifeclinic?
lifecinic.com is an in-depth resource for information about prevalent health conditions and an on-line service to track your health over time.
What's new this week at lifeclinic.com
|
<%
dim intItemIdx
dim strBreak
strBreak = ""
for intItemIdx = 0 to intFeaturedCount - 1
%>
<%=strBreak%>
Featured Article
<%
strBreak = " " next %> | |
| <% if not IsEmpty(strRecipeArticleId) then %> Recipe of the week <% end if %> | |
| <% if not IsEmpty(strFitnessArticleId) then %> Fitness tip of the week <% end if %> | |
| <% if not IsEmpty(strEatingArticleId) then %> Healthy eating tip of the week <% end if %> |
% artDisconnect %>