% 'colirs_header_include.asp
' Special script that is included by "three-panel" content pages to display the page header.
' This script does not display the "breadcrumbs" that the standard "5 panel" content pages have.
' On 3-panel pages there is always a "save in personal folder" link, even if the user hasn't
' logged in. But the personal folder scripts will make sure that the user logs in before
' saving the link.
'
' 08/05/01 was Added conditional code in header so that "Our Staff" pages will show a graphic for
' "Our Doctors", and will not show the "Find Similar" link.
' 08/20/01 jrr Removed code that is also used by list.asp, and replaced it with a call to MastHead,
' which is in header.asp. (Thus, added header.asp to the list of included files)
' 09/24/01 jrr - discovered bug: when linking to to Texis, this script decides someone is logged in only be looking for the presence of the cookie.
' 10/05/01 fi Fixed bug (described just above)
' Also installed Send to Friend code
' 10/30/01 jrr Commented out the hyperlink to Send to Friend, because the
' system software isn't working.
'
'11/01/2001 RGL: Get rid of the code to check user's login status and call function getUserId from file
' constant.asp instead.
'07/20/02 jrr Added a Dim statement for current_script_related.
'04/20/05 jrr Restored the "email a friend" link to the header.
' (At some point in the distant past, it has been commented out because
' the system software wasn't working) %>
<%sub sub_page_css %>
<%end sub %>
<%
'********************************************************************
' Name: constants.asp
' Purpose: This include file contains application-wide constants and variables.
'********************************************************************
'*******************************************************************
'Modification history
'11/01/2001 RGL: add function getUserId (moved from file list.asp)to be called
' by list.asp and colirs_header_include.asp to decide user's login
' status.
''11/05/2001 RGL: Move all three functions originally in this file, check_login (user, pass),
' check_login2 and getUserId, to a new included file constantsFunctions.inc
'7/18/02 RGL: add a new constant CINT_VGUIDE_FIRSTCAT_ID
'7/21/02 jrr: Define the various path strings as variables instead of constants and base them on the
' value of request.servervariables("SERVER_NAME"). This should allow the constants.asp
' file to be moved among servers with fewer edits.
'--------------------------------------------------------------------
%>
Error processing SSI file
<%
'--------------------------------------------------------------------------
'For registered user, pass a value to texis site to retain the state
'G_U_LOGIN
dim G_U_LOGIN
'-----------------------------------------------------------------------
' 07-30-2001 RL: add loginMessage to print out friendly message when
' a user attempts to log in
dim loginMessage
dim SERVER_NAME
SERVER_NAME = replace( request.servervariables("SERVER_NAME"),"ccf.org","clevelandclinic.org")
'--------------------------------------------------------------------
' Notes: added 05/16/01
' These constants are prefixes of hard-codes links within SSL-securied
'directories. They force the links to point to out of https: .
'--------------------------------------------------------------------
'const HTTP_DOMAIN_CCF = "http://test.www.clevelandclinic.org"
'const HTTPS_DOMAIN_CCF = "https://test.www.clevelandclinic.org"
'const HTTPS_DOMAIN_FATHOM = "https://test.ccf.fathomi.net"
'const HTTP_DOMAIN_FATHOM = "http://test.ccf.fathomi.net"
'*********************************************************************
'the following pairs comment off/on to match different servers, CCF
' Server and Fathom test server
'*********************************************************************
Dim HTTP_DOMAIN_CURRENT,HTTPS_DOMAIN_CURRENT
HTTP_DOMAIN_CURRENT = "http://" & SERVER_NAME
HTTPS_DOMAIN_CURRENT = "https://" & SERVER_NAME
'--------------------------------------------------------------------
' Constants used in list.asp file
'--------------------------------------------------------------------
'const SEARCHSCRIPTPATH = "http://texis.ccfheart.copfer.com/cgi-bin/texis/cchcsearch"
const SEARCHSCRIPTPATH = "http://texis.clevelandclinic.org/cgi-bin/texis/cchcsearch"
Dim HOME_PATH,HOMEPATHWOHTTP
HOME_PATH = "http://" & SERVER_NAME & "/heartcenter"
HOMEPATHWOHTTP = SERVER_NAME & "/heartcenter"
'--------------------------------------------------------------------
' Notes: These constants define the reply to address and display name for all e-mail forms.
'--------------------------------------------------------------------
'const FROM_EMAIL = "justin@copfer.com"
const FROM_EMAIL = "stovskb@ccf.org"
const FROM_NAME = "Cleveland Clinic Heart Center Webmaster"
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants define the webmaster address for error handling.
'--------------------------------------------------------------------
'const WEBMASTER_EMAIL = "justin@copfer.com"
const WEBMASTER_EMAIL = "webmaster@ccf.org"
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: This contant sets the default text to use if a tip is not
' found in the database.
'--------------------------------------------------------------------
const DEFAULT_TIP_TEXT="Spend some time each day for YOU."
'--------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: This constant will display the specified text within the
' banner for the timeline.
'--------------------------------------------------------------------
const TIMELINE_BANNER_TEXT="Select a year below to begin your tour of the Cleveland Clinic Timeline."
'--------------------------------------------------------------------
' Notes: These constants and gloabl variables define common ASCII formatting codes used in all e-mail forms.
'--------------------------------------------------------------------
dim CRLF
CRLF = Chr(13) + Chr(10)
const PLAIN_TEXT_WIDTH = 45
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants defines the cookie prefix that will be present in all cookie ID's
' used to maintain login status.
'--------------------------------------------------------------------
const COOKIE_PREFIX = "B895915A7F7011D48005005004D6D931"
dim COOKIE_PREFIX_LEN
COOKIE_PREFIX_LEN = Len(cookie_prefix)
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants defines the cookie prefix that will be present in all cookie ID's
' used to maintan registration status.
'--------------------------------------------------------------------
const COOKIE_PREFIX2 = "624790FDC4BC11D480A2009027E52D9E"
dim COOKIE_PREFIX_LEN2
COOKIE_PREFIX_LEN2 = Len(cookie_prefix2)
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants contain the bit mask integer values
' used for Access Rights defined in the "User Group" table.
'--------------------------------------------------------------------
const ACCESS_RIGHT_PUBLIC = 1
const ACCESS_RIGHT_PATIENT = 2
const ACCESS_RIGHT_EDITOR = 4
const ACCESS_RIGHT_ADMIN = 8
'-------------------------------------------------------------------
' Notes: This global variable should be used to retrieve the
' UserID of the current login session. It will contain a
' long integer value.
dim USER_ID
USER_ID = 0
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants are used to hold common messages and errors.
'--------------------------------------------------------------------
const heart_guide_disclaimer = "This information is provided for education purposes only and is not intended to replace the medical advice of your doctor or health care provider. Please consult your health care provider for advice about a specific medical condition or contact the Cleveland Clinic if you would like an appointment."
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Constants used in admin/doc/add_doc_upload file
' 1/24/02 RGL: CHAGED
'--------------------------------------------------------------------
Dim ADD_DOC_REFER_PAGE,MOD_DOC_REFER_PAGE
ADD_DOC_REFER_PAGE = HTTP_DOMAIN_CURRENT & "/heartcenter/admin/doc/add_doc.asp"
MOD_DOC_REFER_PAGE = HTTP_DOMAIN_CURRENT & "/heartcenter/admin/doc/mod_doc.asp"
'1/14/02 RGL: comment it out b/c not used anywhere
const PUB_FOLDER_NAME = "/heartcenter/pub/"
'-------------------------------------------------------------------
dim generic_user_id
generic_user_id = check_login("guest", "guest")
'-------------------------------------------------------------------
'--------------------------------------------------------------------
' Notes: These constants are used to create the login cookie.
'--------------------------------------------------------------------
'const COOKIE_DOMAIN = ".fathomi.net"
'const COOKIE_DOMAIN = ".copfer.com"
'const COOKIE_DOMAIN = ".clevelandclinic.org
'const COOKIE_DOMAIN = ".clevelandclinic.org"
const COOKIE_DOMAIN = ".clevelandclinic.org"
'-------------------------------------------------------------------
'-------------------------------------------------------------------
' these are bland substitutions for nt ids and passwords.
const PATIENT = "ccf_patient"
const ADMIN = "ccf_admin"
const PATIENT_PD = "ccf_patient"
const ADMIN_PD = "ccf_admin"
'-------------------------------------------------------------------
'-------------------------------------------------------------------
' Constants for the ID value of a new first level category 'Vascular Guide'
' The value is 'CatId' in table 'Cats' of the record 'Vascular Guide', and it
' can be retrieved using
' select CatID from cats
' where parentID is null
' and cat_dir = 'vguide'
const CINT_VGUIDE_FIRSTCAT_ID = 459
'-------------------------------------------------------------------
%>
<%
'--------------------------------------------------------------------
' This function displays the errors if there are problems.
'--------------------------------------------------------------------
sub handle_errors(obj)
dim errors
set errors = obj.Errors
if errors is nothing then exit sub
Dim objError
%>
| The username you chose was already taken, Please go back to enter a different username |
|
| Script Name: | <%= Request.ServerVariables ("SCRIPT_NAME") %> |
| Source: | <%=objError.ErrorSource%> |
| Number: | <%=objError.ErrorNumber%> |
| Description: | <%=objError.ErrorMessage%> |
![]() |
|
||||||||||
![]() |
|
|||||||||
| The nation's #1 heart program by U.S. News & World Report for 13 years in a row! |
Study shows that frequent food can lower cholesterol: Q & A with Melissa Stevens, MS, RD, LD, Nutrition Program Coordinator for Preventive Cardiology and RehabilitationIs it possible that eating more frequently can lower your cholesterol? A recent study published in The British Medical Journal found that people who ate six small meals each day had an average cholesterol level that was five percent lower than people who ate only one or two big meals each day. The study, conducted at the University of Cambridge, found that eating more frequently also lowered levels of artery-clogging LDL cholesterol. So does this mean you can eat fast food six times a day and lower your cholesterol? No. But you can lower your cholesterol if you eat more frequently, make healthy eating choices and control your portions, says Melissa Stevens, MS, RD, LD, Nutrition Program Coordinator for Preventive Cardiology and Rehabilitation at the Cleveland Clinic Heart Center in Cleveland, Ohio. Below, Ms. Stevens discusses how frequent eating can lower your cholesterol. Q. First, what are the current standards for normal, borderline and high cholesterol? A. The National Cholesterol Education Program, which is administered through the National Institutes of Health, released aggressive new cholesterol guidelines last year. For total cholesterol, 200 milligrams/deciliter is considered desirable; 200 to 239 is considered borderline; and greater than 240 is high. For low density lipoproteins, also known as LDL or bad cholesterol, under 100 is optimal; 100 to 129 is above normal; 130-159 is borderline high; over 160 is high and over 190 is very high. For high-density lipoproteins, also known as HDL or good cholesterol, a higher number is good; 40 or below is low, while 60 or more is considered good. Q. Why would eating six times -- rather than once or twice per day -- lower cholesterol levels? A. About half of the patients I see skip breakfast and eat a light lunch, then eat a big dinner and snack throughout the evening. If you don’t eat regularly, your metabolism slows down and your body absorbs and stores more of the food you eat, including cholesterol and fat. But our bodies are incredibly adept at adapting. If you eat more frequently, your metabolism speeds up because your body “learns” that more food will be on the way, thus burning off calories instead of storing them and absorbing less cholesterol and fat. Eating breakfast is a great way to jumpstart your metabolism each day. It’s also a good idea to consume most of your food during daylight hours because that’s when you’re most active. For most people, eating after 7 p.m. is like putting gas into a car that isn’t going to be driven. Q. Since cholesterol levels are somewhat hereditary, does what you eat play a critical role in controlling cholesterol? A. Absolutely. For patients with high cholesterol, we recommend up to three months of dietary changes before we put them on cholesterol-lowering medications. A change in diet and lifestyle can result in a five to 25 percent reduction in total cholesterol. Patients achieve this by reducing saturated fat and cholesterol intake. Total daily fat intake should be between 25 and 35 percent of total calories. Saturated fat should be less than seven percent of total calories. About 20 percent of total calories should come from monounsaturated fat, which is found in foods such as olive oil, nuts, canola oil, avocados and olives. Another 10 percent of total calories should come from polyunsaturated fats, which are found in foods like corn oil and soybean oil. Cholesterol from animal products such as meat, eggs, cheese and milk should total less than 200 milligrams per day. Fiber also plays an important role in controlling cholesterol. We encourage patients to eat 20 or more grams of fiber each day, with at least half of that coming from soluble fibers such as oatmeal, fruits, vegetables, barley and dried beans. Q. Are there any new foods that work specifically to lower cholesterol? A. In addition to soluble fibers, which are found naturally in several foods, some manmade foods can lower cholesterol. For example, Benecol and Take Control are sterol-enriched margarines intended for use by people who have high cholesterol. They work by competing with cholesterol for absorption into the body. Two tablespoons per day can reduce cholesterol by about 14 percent. Q. What types of food, what quantities and what schedule would you suggest if someone wants to eat six meals per day? A. Here is a typical menu and schedule for a low saturated fat, low cholesterol, high fiber diet. This example would provide about 1800 calories.
Q. Is eating more frequently a healthier way to eat, no matter your cholesterol levels? A. Yes. This is a healthful eating pattern that can help lower the risk of cancer, hypertension, obesity, diabetes and other diseases. You don’t have to eat six times per day. Four to six times per day is fine as long as you’re making healthful choices and controlling your portions. For more information on a heart-healthy diet plan, please contact the Preventive Cardiology and Rehabilitation Program at 216.444-9353 (or toll-free at 800/223-2273, extension 49353) and we can schedule a nutrition consultation. |
|
||||||||||||
<% end sub %> <% Call PubHtmlFooter %>