ÿþf u n c t i o n   c a l c u l a t e ( f r m   )  
 {   / /   c a l c u l a t e  
  
         / /   i n i t a l i z e   t h e   s c o r e   t o   z e r o 	  
         v a r   y o u r S c o r e   =   0  
         v a r   c u r V a l u e   =   0  
         / /   R u n   t h r o u g h   a l l   t h e   f o r m   f i e l d s   a n d   c a l c u l a t e   t h e   s c o r e  
  
         f o r   ( v a r   i = 0 ;   i   <   f r m . e l e m e n t s . l e n g t h ;   i + + )    
         {   / /   f o r    
  
                 / /   G e t   t h e   c u r r e n t   f i e l d  
                 f o r m _ f i e l d   =   f r m . e l e m e n t s [ i ]  
 	 / /   c h e c k   t o   s e e   i f   i t   i s   a   r a d i o   b u t t o n   o r   a   c h e c k   b o x  
  
 	 i f   (   f o r m _ f i e l d . t y p e   = =   " r a d i o "   | |   f o r m _ f i e l d . t y p e   = =   " c h e c k b o x "   )  
 	 {   / /   t y p e   f i e l d   c h e c k  
                 	 / /   G e t   t h e   f i e l d ' s   n a m e  
 	                 f o r m _ n a m e   =   f o r m _ f i e l d . n a m e  
 	 	 / /   p r i n t   t h e   f i e l d   n a m e   -   d e b u g g i n g   p u r p o s e s   o n l y  
 	 	 / / d o c u m e n t . w r i t e ( f o r m _ n a m e   +   " < B R > " ) ;  
  
 	 	 / /   I f   t h e   f i e l d   i s   c h e c k e d ,   t h e   t h e   v a l u e   f o r   t h e   f i e l d  
 	 	 / /   A d d   t h a t   v a l u e   i n t o   t h e   t o t a l 	  
 	 	 i f (   f o r m _ f i e l d . c h e c k e d   )  
 	 	 { 	 / /   f i e l d   c h e c k e d   b y   u s e r  
 	 	 	 c u r V a l u e   =   f o r m _ f i e l d . v a l u e ;  
 	 	 	 / / d o c u m e n t . w r i t e ( c u r V a l u e   + " < B R > " ) ;  
 	 	 	 / /   a d d   t h e   v a l u e   t o   t h e   t o t a l  
 	 	 	   y o u r S c o r e   + =   ( c u r V a l u e   *   1 )  
 	 	 }   / /   f i e l d   c h e c k e d   b y   u s e r  
 	 	  
 	 	 / / d o c u m e n t . w r i t e (   y o u r S c o r e   + " < B R > " ) ;  
 	 }   / /   t y p e   f i e l d   c h e c k  
 	      
         } 	 / /   f o r  
  
  
 }   / /   c a l c u l a t e  
  
 f u n c t i o n   v a l i d a t e U s e r n a m e ( f l d )   {  
         v a r   e r r o r   =   " " ;  
         v a r   i l l e g a l C h a r s   =   / \ W / ;   / /   a l l o w   l e t t e r s ,   n u m b e r s ,   a n d   u n d e r s c o r e s  
    
         i f   ( f l d . v a l u e   = =   " " )   {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;    
                 e r r o r   =   " Y o u   d i d n ' t   e n t e r   a   u s e r n a m e . \ n " ;  
         }   e l s e   i f   ( ( f l d . v a l u e . l e n g t h   <   5 )   | |   ( f l d . v a l u e . l e n g t h   >   1 5 ) )   {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;    
                 e r r o r   =   " T h e   u s e r n a m e   i s   t h e   w r o n g   l e n g t h . \ n " ;  
         }   e l s e   i f   ( i l l e g a l C h a r s . t e s t ( f l d . v a l u e ) )   {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;    
                 e r r o r   =   " T h e   u s e r n a m e   c o n t a i n s   i l l e g a l   c h a r a c t e r s . \ n " ;  
         }   e l s e   {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' W h i t e ' ;  
         }    
         r e t u r n   e r r o r ;  
 }  
  
 f u n c t i o n   t r i m ( s )  
 {  
     r e t u r n   s . r e p l a c e ( / ^ \ s + | \ s + $ / ,   ' ' ) ;  
 }    
  
 f u n c t i o n   v a l i d a t e E m a i l ( f l d )   {  
         v a r   e r r o r = " " ;  
         v a r   t f l d   =   t r i m ( f l d . v a l u e ) ;                                                 / /   v a l u e   o f   f i e l d   w i t h   w h i t e s p a c e   t r i m m e d   o f f  
         v a r   e m a i l F i l t e r   =   / ^ [ ^ @ ] + @ [ ^ @ . ] + \ . [ ^ @ ] * \ w \ w $ /   ;  
         v a r   i l l e g a l C h a r s =   / [ \ ( \ ) \ < \ > \ , \ ; \ : \ \ \ " \ [ \ ] ] /   ;  
          
         i f   ( f l d . v a l u e   = =   " " )    
         {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;  
                 e r r o r   =   " Y o u   d i d n ' t   e n t e r   a n   e m a i l   a d d r e s s . \ n " ;  
         }   e l s e   i f   ( ! e m a i l F i l t e r . t e s t ( t f l d ) )    
         {                             / / t e s t   e m a i l   f o r   i l l e g a l   c h a r a c t e r s  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;  
                 e r r o r   =   " P l e a s e   e n t e r   a   v a l i d   e m a i l   a d d r e s s . \ n " ;  
         }   e l s e   i f   ( f l d . v a l u e . m a t c h ( i l l e g a l C h a r s ) )    
         {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' Y e l l o w ' ;  
                 e r r o r   =   " T h e   e m a i l   a d d r e s s   c o n t a i n s   i l l e g a l   c h a r a c t e r s . \ n " ;  
         }   e l s e    
         {  
                 f l d . s t y l e . b a c k g r o u n d   =   ' W h i t e ' ;  
         }  
         r e t u r n   e r r o r ;  
 }  
  
 f u n c t i o n   c h a n g e T o M a l e ( )  
 {      
       v a r   c =   d o c u m e n t . g e t E l e m e n t B y I d ( " h d t e x t " ) . t i t l e = " h e a d e r = [ < i m g   s r c = ' i d e a l w t m . j p g '   s t y l e = ' v e r t i c a l - a l i g n : m i d d l e ' > ]   b o d y = [ W e i g h t   T a b l e ] > < i m g   s r c = ' s c a l e . j p g '   s t y l e = ' v e r t i c a l - a l i g n : m i d d l e '   w i d t h = ' 5 3 '   h e i g h t = ' 1 9 ' > "  
       v a r   e =   d o c u m e n t . g e t E l e m e n t B y I d ( " q u e s t 2 2 " ) . i n n e r H T M L   =   " 2 2 .   H a v e   y o u   h a d   a   p r o s t r a t e   e x a m   f r o m   a   d o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r   i n   t h e   p a s t   1 2   m o n t h s ? "  
 }  
  
 f u n c t i o n   c h a n g e T o F e m a l e ( )  
 {      
     v a r   c =   d o c u m e n t . g e t E l e m e n t B y I d ( " h d t e x t " ) . t i t l e = " h e a d e r = [ < i m g   s r c = ' i d e a l w t w . j p g '   s t y l e = ' v e r t i c a l - a l i g n : m i d d l e ' > ]   b o d y = [ W e i g h t   T a b l e ] > < i m g   s r c = ' s c a l e . j p g '   s t y l e = ' v e r t i c a l - a l i g n : m i d d l e '   w i d t h = ' 5 3 '   h e i g h t = ' 1 9 ' > "  
     v a r   e =   d o c u m e n t . g e t E l e m e n t B y I d ( " q u e s t 2 2 " ) . i n n e r H T M L   =   " 2 2 .   H a v e   y o u   h a d   a   b r e a s t   e x a m   o r   m a m m o g r a m   f r o m   a   d o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r   i n   t h e   p a s t   1 2   m o n t h s ? "  
 }  
  
  
 f u n c t i o n   V a l i d a t e R a d i o B u t t o n ( f l d )  
 {  
         v a r   c n t   =   - 1 ;  
  
         f o r   ( v a r   i = b t n . l e n g t h - 1 ;   i   >   - 1 ;   i - - )    
         {  
                 i f   ( b t n [ i ] . c h e c k e d )   { c n t   =   i ;   i   =   - 1 ; }  
         }  
          
         i f   ( c n t   >   - 1 )    
 	 	 r e t u r n   b t n [ c n t ] . v a l u e ;  
         e l s e   r e t u r n   n u l l ;  
 }  
  
  
  
  
 f u n c t i o n   c a l c u l a t e m y s c o r e ( f r m   )  
 {   / /   c a l c u l a t e  
      
  
 / /   r e s p o n s e   s t r i n g s  
  
  
 / /   H I G H   S C O R E  
 v a r   s c o r e _ h i g h _ s t r   =   " E x c e l l e n t   o v e r a l l   H e a l t h   b a s e d   o n   y o u r   r e s p o n s e s   t o   t h e   F r e e   M y P H   H e a l t h C h e k ©   s u r v e y .   \  
 W e   a r e   p r o u d   o f   y o u   f o r   t a k i n g   g o o d   c a r e   o f   y o u r   H e a l t h .     A s   a   r e w a r d   y o u   w i l l   b e   a l l o w e d   o n e   f r e e   \  
 d o w n l o a d   o f   t h e   M y   P r e v e n t i v e   H e a l t h   N u t r i t i o n a l   a n d   C a n c e r   P r e v e n t i o n   T i p s © .   \  
 P l e a s e   c l i c k   o n   t h e   l i n k   b e l o w :   w w w . M y P r e v e n t i v e H e a l t h . o r g . \ n   "  
  
 / /   G E N E R A L   S U G G E S T I O N    
 v a r   s u g g e s t _ s t r _ 1 0 _ 1 9   =   " W e   s u g g e s t   t h a t   a t   a   m i n i m u m ,   y o u   f o l l o w   t h e   r e c o m m e n d a t i o n s   f o r   \  
 C a n c e r   s c r e e n i n g   f o r   y o u r   A g e   a n d   y o u r   S e x   f r o m   t h e   A m e r i c a n   C a n c e r   S o c i e t y .     W e   a l s o   s u g g e s t   t h a t   \  
 y o u   r e v i e w   t h e   P r e v e n t i v e   H e a l t h   s u g g e s t i o n s   f o r   y o u r   A g e   a n d   y o u r   S e x   a t   w w w . M y P r e v e n t i v e H e a l t h . c o m .   \  
 I f   y o u   w o u l d   l i k e   t o   j o i n   a n   o n g o i n g   d i s c u s s i o n   o f   a   H e a l t h   T o p i c   t h a t   i s   o f   p a r t i c u l a r   i n t e r e s t   t o   y o u ,   \  
 p l e a s e   f e e l   f r e e   t o   s i g n   i n t o   o u r   P r e v e n t i v e   H e a l t h   B l o g ,   w w w . M y P H V o i c e . c o m .   C o n t i n u e   t o   t a k e   g o o d   c a r e   o f   y o u r   h e a l t h . \ n " ;      
  
 / /   S C O R E   8 0   T O   8 9      
 v a r   s c o r e _ 8 0 _ 8 9   =   " G o o d   h e a l t h   o v e r a l l   b a s e d   o n   y o u r   r e s p o n s e s   t o   t h e   H e a l t h C h e k ©   s u r v e y .   P l e a s e   n o t e   t h e   S p e c i f i c   \  
 S u g g e s t i o n s   b e l o w .   W e   a r e   p r o u d   o f   y o u   f o r   t a k i n g   g o o d   c a r e   o f   y o u r   H e a l t h .     A s   a   r e w a r d   y o u   w i l l   b e   a l l o w e d   o n e   \  
 f r e e   d o w n l o a d   o f   t h e   M y   P r e v e n t i v e   H e a l t h   N u t r i t i o n a l   a n d   C a n c e r   P r e v e n t i o n   T i p s © .   P l e a s e   c l i c k   o n   t h e   l i n k   \  
 b e l o w :   w w w . M y P r e v e n t i v e H e a l t h . o r g . \ n " ;  
  
 / / S C O R E   7 0   T O   7 9  
 v a r   s c o r e _ 7 0 _ 7 9   =   " F a i r   o v e r a l l   b u t   y o u   n e e d   t o   p a y   m o r e   a t t e n t i o n   t o   c e r t a i n   a s p e c t s   o f   y o u r   h e a l t h .   \  
 S u g g e s t   y o u   r e v i e w   y o u r   c u r r e n t   h e a l t h   p l a n   w i t h   y o u r   d o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r .   P l e a s e   a l s o   r e v i e w   \  
 t h e   c a u t i o n s   a n d   s u g g e s t i o n s   l i s t e d   b e l o w . \ n " ;  
  
 / /   G E N E R A L   A D V I C E   S T R I N G      
 v a r   g e n e r a l _ a d v i c e _ s t r   =   " W e   s u g g e s t   t h a t   a t   a   m i n i m u m ,   y o u   f o l l o w   t h e   r e c o m m e n d a t i o n s   f o r   C a n c e r   s c r e e n i n g   f o r   \  
 y o u r   A g e   a n d   y o u r   S e x   f r o m   t h e   A m e r i c a n   C a n c e r   S o c i e t y .     W e   a l s o   s u g g e s t   t h a t   y o u   r e v i e w   t h e   P r e v e n t i v e   H e a l t h   \  
 s u g g e s t i o n s   f o r   y o u r   A g e   a n d   y o u r   S e x   a t   w w w . M y P r e v e n t i v e H e a l t h . c o m .     I f   y o u   w o u l d   l i k e   t o   j o i n   a n   o n g o i n g   \  
 d i s c u s s i o n   o f   a   H e a l t h   T o p i c   t h a t   i s   o f   p a r t i c u l a r   i n t e r e s t   t o   y o u ,     p l e a s e   f e e l   f r e e   t o   s i g n   i n t o   o u r   P r e v e n t i v e   \  
 H e a l t h   B l o g ,   w w w . M y P H V o i c e . c o m . \ n " ;  
    
 / /   S C O R E   6 0   T O   6 9  
 v a r   s c o r e _ 6 0 _ 6 9   =   " F a i r   o v e r a l l   b u t   n e e d   t o   p a y   m o r e   a t t e n t i o n   t o   y o u r   h e a l t h .   P l e a s e   r e v i e w   t h e   c a u t i o n s   a n d   \  
 s u g g e s t i o n s   l i s t e d   b e l o w . \ n " ;  
  
 / /   S C O R E   0   T O   5 9    
 v a r   s c o r e _ 0 _ 5 9   =   " S u g g e s t   y o u   w o r k   m o r e   c l o s e l y   w i t h   y o u r   D o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r   t o   i m p r o v e   y o u r   \  
 o v e r a l l   s t a t e   o f   H e a l t h .   P l e a s e   r e v i e w   t h e   c a u t i o n s   a n d   s u g g e s t i o n s   l i s t e d   b e l o w . \ n " ;  
  
 / /   A G E   1 0   T O   1 9      
 v a r   q 1 _ 1 0 _ 1 9   =   " < B R > < b > A g e   1 0   t o   1 9 . < / B > < B R > C o n g r a t u l a t i o n s   o n   l o o k i n g   a t   a   P r e v e n t i v e   H e a l t h   P r o g r a m   a t   s u c h   a n   e a r l y   a g e .   \  
 Y o u   a r e   i n   a n   a g e   g r o u p   w h e r e   y o u   b o d y   i s   u n d e r g o i n g   m a j o r   c h a n g e s   a n d   y o u   m a y   b e   p r o d u c i n g   l a r g e   \  
 q u a n t i t i e s   o f   c e r t a i n    H o r m o n e s  .   H o r m o n e s   a r e   C h e m i c a l s   t h a t   t h e   b o d y   n o r m a l l y   p r o d u c e   t o   r e g u l a t e \  
 t h e   f u n c t i o n   o f   t h e   m a n y   o r g a n s   i n   y o u r   b o d y   e s p e c i a l l y   t h e   d e v e l o p m e n t   o f   y o u r   M a l e   a n d   F e m a l e   o r g a n s .   \  
 < B R > < B R > Y o u r   m a j o r   H e a l t h   r i s k s   d u r i n g   t h i s   p e r i o d   a r e   O b e s i t y   a n d   d e a t h   a n d   d i s a b i l i t y   c a u s e d   b y   A c c i d e n t s   \  
 a n d   I n j u r i e s .     Y o u   s h o u l d   a l w a y s   f o l l o w   t h e   s a f e t y   r u l e s   f o r   d r i v i n g   a u t o m o b i l e s   i n c l u d i n g   \  
 t h e   u s e   S e a t b e l t s .   A v o i d   A l c o h o l   a n d   D r u g s ,   e s p e c i a l l y   w h e n   d r i v i n g   a n   a u t o m o b i l e   a n d   d o   n o t   d r i v e   a s   a   \  
 p a s s e n g e r   i n   a n   a u t o m o b i l e   t h a t   i s   b e i n g   d r i v e n   b y   s o m e o n e   w h o   i s   u n d e r   t h e   i n f l u e n c e   o f   D r u g s   o r   A l c o h o l . \  
 < B R > < B R > A v o i d   O b e s i t y   b y   p a y i n g   c a r e f u l   a t t e n t i o n   t o   y o u r   b o d y   w e i g h t   a n d   y o u r   b o d y   c o m p o s i t i o n .     F i n d   a n   a c t i v i t y   \  
 t h a t   y o u   e n j o y   t h a t   g i v e s   y o u   l o t s   o f   e x e r c i s e ,   f r e s h   a i r   a n d   s u n s h i n e .   T h i s   w i l l   h e l p   y o u   a v o i d   \  
 O b e s i t y   a n d   s t r e n g t h e n   y o u r   H e a r t ,   L u n g s   a n d   M u s c l e s .     E d u c a t e   y o u r s e l f   a n d   y o u r   f a m i l y   n o w   a b o u t   H e a l t h y   \  
 F o o d   C h o i c e s ,   s o   t h a t   y o u   w i l l   d e v e l o p   g o o d   e a t i n g   h a b i t s   f o r   t h e   r e s t   o f   y o u r   l i f e .   S e x u a l l y   t r a n s m i t t e d     \  
 d i s e a s e s   p r e s e n t   a   m a j o r   r i s k   i n   y o u r   a g e   g r o u p   a n d   y o u   s h o u l d   t a k e   a p p r o p r i a t e   p r e c a u t i o n s . " ;  
  
 / /     A G E   2 0   T O   3 9  
 v a r   q 1 _ 2 0 _ 3 9   =   " < B R > < b > A g e   2 0   t o   3 9 . < / b > < b r > S o m e   a r e a s   o f   y o u r   b o d y   a r e   s t i l l   d e v e l o p i n g   a n d   y o u   a r e   s t i l l   c a p a b l e   o f   p r o d u c i n g   l o t s   o f   G r o w t h   H o r m o n e   ( t h e   Y o u t h   H o r m o n e ) .   F i n d   a n   a c t i v i t y   t h a t   y o u   e n j o y   t h a t   g i v e s   y o u   l o t s   o f   e x e r c i s e ,   f r e s h   a i r   \  
 a n d   s u n s h i n e .     T h i s   w i l l   h e l p   y o u   a v o i d   t h e   p r o b l e m   o f     O b e s i t y   a n d   w i l l   s t r e n g t h e n   y o u r   H e a r t ,   L u n g s   a n d   M u s c l e s .   \  
 I f   y o u   w a n t   t o   c o n t i n u e   l o o k i n g    y o u n g  ,   t r y   t o   o b t a i n   7   t o   8   h o u r s   o f   S l e e p   a t   n i g h t   i n   o r d e r   t o   o p t i m i z e   y o u r \  
 b o d y  s   p r o d u c t i o n   o f   G r o w t h   H o r m o n e . < b r > < b r >   A c c i d e n t s   a n d   I n j u r i e s   s t i l l   r e p r e s e n t   a   m a j o r   r i s k   f o r   y o u .   \  
 A v o i d   A l c o h o l   a n d   D r u g s ,   e s p e c i a l l y   w h e n   d r i v i n g   a n   a u t o m o b i l e   a n d   d o   n o t   d r i v e   a s   a   p a s s e n g e r   i n   a n   a u t o m o b i l e   \  
 t h a t   i s   b e i n g   d r i v e n   b y   s o m e o n e   w h o   i s   u n d e r   t h e   i n f l u e n c e   o f   D r u g s   o r   A l c o h o l .   S e x u a l l y   t r a n s m i t t e d   \  
 d i s e a s e s   p r e s e n t   a   m a j o r   r i s k   i n   y o u r   a g e   g r o u p   a n d   y o u   s h o u l d   t a k e   a p p r o p r i a t e   p r e c a u t i o n s . " ;  
  
 / /   A G E   4 0   T O   4 9    
 v a r   q 1 _ 4 0 _ 4 9   =   " < B R > < b > A g e   4 0   t o   6 9 . < / b > < b r > Y o u   a r e   i n   a n   a g e   g r o u p   i n   w h i c h   y o u r   b o d y   m a y   b e   s u b j e c t   t o   m a j o r   H o r m o n a l   S h i f t s   i n c l u d i n g   d e c r e a s e d   p r o d u c t i o n   o f   G r o w t h   H o r m o n e     a n d   s h i f t s   i n   t h e   p r o d u c t i o n   o f   y o u r   M a l e   a n d   F e m a l e   H o r m o n e s .     T h i s   \  
 i s   a   p e r i o d   w h e n   i t   m a y   b e   u s e f u l   t o   d i s c u s s   a   d e t a i l e d   H o r m o n a l   e v a l u a t i o n   w i t h     y o u r   d o c t o r .   < b r > < b r > C a n c e r   b e c o m e s   \  
 m o r e   o f   a   r i s k   i n   t h i s   a g e   g r o u p   a n d   i t   i s   v e r y   i m p o r t a n t   f o r   y o u   t o   l e a r n   a n d   f o l l o w   t h e   C a n c e r   s c r e e n i n g   g u i d e l i n e s   \  
 t h a t   a r e   a p p r o p r i a t e   f o r   y o u r   a g e   a n d   y o u r   s e x . " ;  
  
 / /   A N S W E R   Y E S   T O   G U M   D I S E A S E    
 v a r   q 6 a _ y e s   =   " < B R > < b > Y e s   t o   G u m   I n f e c t i o n s   o r   D e n t a l   C a v i t i e s < / B > < b r > C h r o n i c   i n f e c t i o n s   o f   t h e   m o u t h   a n d   g u m s   \  
 h a v e   b e e n   a s s o c i a t e d   w i t h   a n   i n c r e a s e d   r i s k   o f   D i a b e t e s   a n d   C a n c e r . " ;  
  
 / /   A N S W E R   Y E S   T O   D E N T A L   F I L L I N G S  
 v a r   q 6 b _ y e s     =   " < b r > < b > Y e s   t o   D e n t a l   F i l l i n g s   t h a t   c o n t a i n   S i l v e r   A m a l g a m . < / b > < b r > M a n y   o f   t h e   o l d   < s i l v e r - c o l o r e d >   A m a l g a m s   t h a t   w e r e   u s e d   i n   D e n t a l   F i l l i n g s   i n   t h e   p a s t   c o n t a i n e d   \  
 s m a l l   a m o u n t s   o f   M e r c u r y .     M e r c u r y   c a n   c a u s e   s e r i o u s   h e a l t h   p r o b l e m   w h e n   i t   l e a k s   i n t o   t h e   b l o o d   o r   i n t o   t h e   \  
 t i s s u e s .   I f   y o u   h a v e   t h e s e   f i l l i n g s ,   y o u   m a y   w a n t   t o   d i s c u s s   t h e m   w i t h   y o u r   D e n t i s t s   a t   t h i s   t i m e . " ;  
  
 / /   A N S W E R   Y E S   T O   H I S T O R Y   O F   S M O K I N G  
 v a r   q 9 _ y e s   =   " < b r > < b > Y e s   t o   H i s t o r y   o f   S m o k i n g . < / b > < b r >   I n h a l i n g   C i g a r e t t e   S m o k e   e i t h e r   a s   a   P r i m a r y   u s e r   o r   a s   a n   i n n o c e n t   \  
 b y s t a n d e r     ( S e c o n d   H a n d   C i g a r e t t e   s m o k e )   h a s   b e e n   a s s o c i a t e d   w i t h   s e r i o u s   h e a l t h   c o n s e q u e n c e s .   \  
 Y o u   s h o u l d   c o n s i d e r   q u i t t i n g .     N i c o t i n e   i s   h i g h l y \   a d d i c t i v e   a n d   i t   i s   o f t e n   d i f f i c u l t   t o   q u i t   o n   y o u r   o w n .   \  
 T h e r e   a r e   m a n y   p r o g r a m s   t h a t   c a n   h e l p   w e a n   y o u   o f f   c i g a r e t t e s   a n d   y o u   w o u l d   b e   w i s e   t o   d i s c u s s   a   c i g a r e t t e   q u i t t i n g   \  
   p r o g r a m   w i t h   y o u r   d o c t o r   a s   s o o n   a s   p o s s i b l e . " ;  
  
 / /   A N S W E R   Y E S   T O   F A M I L Y   H I S T O R Y   O F   D I A B E T E S    
 v a r   q 1 4 _ y e s   =   " < B R > < b > Y e s   t o   H i s t o r y   o f   D i a b e t e s . < / b > < b r >   P o o r l y   c o n t r o l l e d   D i a b e t e s   i n c r e a s e s   y o u r   r i s k   o f   S t r o k e s ,   I n f e c t i o n s   \  
 a n d   H e a r t   D i s e a s e ,   a m o n g   o t h e r   t h i n g s .     Y o u   s h o u l d   w o r k   c l o s e l y   w i t h   y o u r   d o c t o r   o r   h e a l t h   c a r e   p r a c t i t i o n e r   t o   k e e p   y o u   d i a b e t e s   \   u n d e r   c o n t r o l .   M e d i c a l   r e s e a r c h   h a s   d o c u m e n t e d   t h a t   A d u l t   O n s e t   D i a b e t e s   ( T y p e   2   D i a b e t e s )   c a n   o f t e n   b e   c o n t r o l l e d   b y   w o r k i n g \  
 w i t h   y o u r   D o c t o r   t o   l o s e   1 0   p e r   c e n t   o f   y o u r   b o d y   w e i g h t   ( u s u a l l y   e x c e s s   b o d y   f a t ) . " ;  
      
 / /   A N S W E R   Y E S   T O   D I A B E T E S   A N D   O V E R W E I G H T  
 v a r   q 1 4 _ 2 5 _ y e s   =   " < B R > < b > Y e s   t o   D i a b e t e s   A N D   Y e s   t o   m o r e   t h a n   2 5   l b s   o v e r w e i g h t . < / b > < b r >   P o o r l y   c o n t r o l l e d   D i a b e t e s   i n c r e a s e s   \  
 y o u r   r i s k   o f   S t r o k e s ,   I n f e c t i o n s   a n d   H e a r t   D i s e a s e ,   a m o n g   o t h e r   t h i n g s .     O b e s i t y   ( e x t r a   b o d y   f a t )   m a k e s   i t   m u c h   m o r e   d i f f i c u l t   \  
 t o   c o n t r o l   D i a b e t e s .     M e d i c a l   r e s e a r c h   h a s   d o c u m e n t e d   t h a t     A d u l t   O n s e t   D i a b e t e s   ( T y p e   2   D i a b e t e s )   c a n   o f t e n   b e   c o n t r o l l e d   b y   \  
 w o r k i n g   w i t h   y o u r   D o c t o r   t o   l o s e   1 0   p e r   c e n t   o f   y o u r     b o d y   w e i g h t   ( u s u a l l y   e x c e s s   b o d y   f a t ) . " ;  
  
    
 v a r   q 1 5 _ 1 6 _ y e s   =   " < B R > < b > Y e s   t o   H i s t o r y   o f   H e a r t   D i s e a s e . < / b > < b r > W o r k   c l o s e l y   w i t h   y o u r   D o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r   t o   \  
 c o n t r o l   f a c t o r s   s u c h   a s   y o u r   B l o o d   S u g a r ,   y o u r   B o d y   W e i g h t   a n d   S t r e s s   f a c t o r s   s u c h   a s   C h r o n i c   F a t i g u e ,   a s   a l l   o f   t h e s e   \  
 f a c t o r s   c a n   a f f e c t   t h e   c o n t r o l   o f   y o u r   H e a r t   D i s e a s e . " ;  
    
 v a r   q 1 7 _ 1 8 _ y e s   =   " < B R > < b > Y e s   t o   P o s i t i v e   C a n c e r   H i s t o r y . < / b > < b r >   I f   y o u   h a v e   h a d   C a n c e r   ( a n y   t y p e ) ,   y o u   m a y   b e   a t   i n c r e a s e d   \  
 r i s k   f o r   d e v e l o p i n g   a   s e c o n d   C a n c e r   i n   t h e   s a m e   o r g a n   o r   C a n c e r     o f   a   d i f f e r e n t   o r g a n .     Y o u   s h o u l d   w o r k   c l o s e l y   w i t h   y o u r   \  
 d o c t o r   a n d   b e   e s p e c i a l l y   c a r e f u l   t o   f o l l o w   e i t h e r   t h e   A m e r i c a n   C a n c e r   S o c i e t y  s   C a n c e r   S c r e e n i n g   P r o g r a m   \  
 t h a t   i s   a p p r o p r i a t e   f o r   y o u r   a g e   a n d   y o u r   s e x   o r   t h e   p r o g r a m   t h a t   y o u r   D o c t o r   r e c o m m e n d s .   < b r > < b r > T h e r e   i s   e v i d e n c e   \  
 t h a t   a   d i e t   t h a t   c o n t a i n s   a   l a r g e   p e r c e n t a g e   o f   l e a f y   g r e e n   v e g e t a b l e s   a n d   a n t i - o x i d a n t s   m a y   s t r e n g t h e n   \  
 t h e   b o d y  s   d e f e n s e s   a g a i n   i n v a d i n g   c a n c e r   c e l l s .   T h e r e   i s   a l s o   s o m e   e v i d e n c e   t h a t   a s   a   g e n e r a l   r u l e ,   \  
 v e g e t a r i a n s   a p p e a r   t o   h a v e   a   s l i g h t l y   d e c r e a s e d   r i s k   o f   d e v e l o p i n g   c a n c e r   o f   c e r t a i n   o r g a n s . " ;  
      
 v a r   q 2 0 _ 2 4 _ y e s   =   " < B R > < b > Y e s   t o   C h r o n i c   I n f e c t i o n s   ( a n y   t y p e ) ? < / b > < b r > S p e c i a l i s t s   i n   t h e   f i e l d   o f   A g e   M a n a g e m e n t   b e l i e v e   t h a t   \  
 c h r o n i c   i n f e c t i o n s   o f   a n y   t y p e   w e a r   d o w n   t h e   b o d y  s   i m m u n e   s y s t e m   ( d e f e n s e s )   o v e r   t i m e   a n d   m a y   c a u s e   t h e   B o d y   t o   A g e   f a s t e r   \  
 t h a n   n o r m a l . "  
  
 v a r   q 2 1 C _ l e s s _ 5 0   =   " < b r > < b > Y e s   t o     B l o o d   i n   S t o o l s /   T o i l e t   P a p e r   a n d   A g e   l e s s   t h a n   5 0 . < / b >   < b r > R e c t a l   b l e e d i n g   ( A T   A N Y   A G E )   m a y   \  
 b e   a n   e a r l y   s i g n   o f   C o l o r e c t a l   c a n c e r   a n d   s h o u l d   b e   i m m e d i a t e l y   d i s c u s s e d   w i t h   y o u r   D o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r .   \  
 C o l o r e c t a l   C a n c e r   i s   u s u a l l y   t o t a l l y   c u r a b l e   i f   d i a g n o s e d   a t   a n   e a r l y   s t a g e .   < b r > < b r >   T h e   A m e r i c a n   C a n c e r   S o c i e t y ,   t h e   \  
 N a t i o n a l   I n s t i t u t e s   o f   H e a l t h   a n d   t h e   D e p a r t m e n t   o f   H e a l t h   S e r v i c e s   r e c o m m e n d   t h a t   a l l   p a t i e n t s   o v e r   a g e   5 0   s h o u l d   b e   s c r e e n e d   \  
 f o r   c o l o r e c t a l   c a n c e r . " ;  
    
 v a r   q 2 1 C _ o v e r _ 5 0   =   " < b r > < b > Y e s   B l o o d   i n   S t o o l s /   T o i l e t   P a p e r   a n d   A g e   g r e a t e r   t h a n   5 0 . < / b > < b r > R e c t a l   b l e e d i n g   ( A T   A N Y   A G E )   m a y   b e   a n   e a r l y   s i g n   o f   C o l o r e c t a l   c a n c e r   a n d   s h o u l d   b e   i m m e d i a t e l y   \  
       d i s c u s s e d   w i t h   y o u r   D o c t o r   o r   H e a l t h   C a r e   P r a c t i t i o n e r .     C o l o r e c t a l   C a n c e r   i s   u s u a l l y   t o t a l l y   c u r a b l e   i f   d i a g n o s e d   a t   \  
       a n   e a r l y   s t a g e . < b r > < b r >   T h e   A m e r i c a n   C a n c e r   S o c i e t y   r e c o m m e n d s   t h a t   a l l   p a t i e n t s   o v e r   A g e   5 0   s h o u l d   b e   s c r e e n e d   f o r   C o l o r e c t a l   \  
   C a n c e r   w h e t h e r   o r   n o t   y o u   h a v e   s e e n   b l o o d   i n   y o u r   s t o o l s .     P l e a s e   r e m e m b e r   t h a t   t h e   m o s t   c o m m o n   s y m p t o m   o f   e a r l y   \  
   ( t r e a t a b l e )     C o l o r e c t a l   C a n c e r   i n   t h i s   a g e   g r o u p   i s   N O   S Y M P T O M S .     H e n c e   t h e   i m p o r t a n c e   o f   g e t t i n g   y o u r   C o l o n   \  
   s c r e e n e d   a t   a g e   5 0   i f   i t   h a s   n o t   b e e n   d o n e   b e f o r e . " ;  
    
   v a r   q 2 5 _ c d e   =   " < b r > < b > Y e s   t o   M o r e   t h a n   2 5   l b s   o v e r w e i g h t   f o r   y o u r   H e i g h t . < / b > < b r > Y o u   s h o u l d   b e   a w a r e   t h a t   e x c e s s   b o d y   f a t   i n c r e a s e s   y o u r   r i s k   o f   s e v e r a l   d i s e a s e s   r e g a r d l e s s   o f   \  
     y o u r   a g e .     T h i s   i s   e s p e c i a l l y   t r u e   f o r   i n c r e a s e d   f a t   a r o u n d   t h e   a b d o m i n a l   a r e a   ( o f t e n   r e f e r r e d   t o   a s   t h e   \  
     s p a r e   t i r e ) .     I n c r e a s e d   r i s k s   o f   O b e s i t y   i n c l u d e :   < b r > · 	 D i a b e t e s < b r > · 	 H y p e r t e n s i o n < b r >   · 	 I n c r e a s e d   B l o o d   F a t s   \  
     ( L D L   o r   B a d   C h o l e s t e r o l   f r a c t i o n ) < b r > · 	 M e t a b o l i c     S y n d r o m e   ( H o v e r   h y p e r l i n k ) < b r >   · 	 C a n c e r < b r > · 	 A r t h r i t i s .     I t   i s   \  
       d i f f i c u l t   t o   i m a g i n e   t h a t   e x c e s s   b o d y   f a t   c a n   c o n t r i b u t e   t o   a l l   o f   t h e s e   d i s o r d e r s ,   b u t   i t   t r u e . " ;  
      
   v a r   q 2 7 _ s l e e p   =   " < b r > < b > Y e s   t o   L e s s   t h a n   7   t o   8     h o u r s   o f   S l e e p   p e r   d a y . < / b > < b r > M a n y   o f   t h e   i m p o r t a n t   r e p a i r   f u n c t i o n s   o f   t h e   b o d y   o c c u r   a t   n i g h t   d u r i n g   r e s t f u l   s l e e p ,   e . g . ,   r e p a i r s   o f   t h e   G a s t r o - i n t e s t i n a l   \  
     t r a c t   ( S t o m a c h ,   S m a l l   I n t e s t i n e s   a n d   C o l o n ) .     M a n y   i m p o r t a n t   H o r m o n e s ,   s u c h   a s   G r o w t h   H o r m o n e   a n d   M e l a t o n i n   a r e   a l s o   p r o d u c e d   a t   n i g h t   d u r i n g   \  
       r e s t f u l   s l e e p .     L a c k   o f   s l e e p   o v e r   p r o l o n g e d   p e r i o d s   c a n   r e s u l t   i n   d i s t u r b a n c e   o f   t h e   n o r m a l   p a t t e r n   o f   f u n c t i o n   o f   t h e s e   b o d y   s y s t e m s   \  
       a n d   r e s u l t   i n   v a r i o u s   t y p e s   o f   d i s e a s e   s t a t e s . " ;  
        
     v a r   q 2 8 _ e x e r c i s e   =   " < b r > < b > N o   t o   L e s s   t h a n   3 0   m i n u t e s   o f   v i g o r o u s   E x e r c i s e   p e r   d a y . < / b >   < b r > E x e r c i s e   i s   i m p o r t a n t   t o   m a i n t a i n   t h e   s t r e n g t h   a n d   v i g o r   o f   y o u r   M u s c l e s ,   y o u r   H e a r t   a n d   y o u r   B l o o d   V e s s e l s .   \  
       V i g o r o u s   e x e r c i s e   i n c r e a s e s   y o u r   l u n g   c a p a c i t y   a n d   i n c r e a s e s   t h e   o x y g e n   s u p p l y   t o   y o u r   b r a i n ,   y o u   o r g a n s   a n d   t h e   t i s s u e s   o f   y o u r   b o d y . < b r >   \  
       V i g o r o u s   e x e r c i s e   m a k e s   y o u   s w e a t   a n d   t h i s   a l s o   c l e a n s e s   ( d e t o x i f i e s )   y o u r   b o d y   b y   g e t t i n g   r i d   o f     s o m e   w a s t e   p r o d u c t s   t h r o u g h   \  
       t h e   p o r e s   o f   y o u r   s k i n .     I n   y o u n g   a d u l t s ,   v i g o r o u s   e x e r c i s e   a l s o   s t i m u l a t e s   G r o w t h   H o r m o n e   p r o d u c t i o n ,   w h i c h   h e l p s   t o   k e e p   y o u   \  
       l o o k i n g   a n d   f e e l i n g   y o u n g e r .     T h a t   i s   p e r h a p s   w h y   m a n y   a t h l e t e s   l o o k   s o   p u m p e d . " ;  
        
        
 v a r   q 3 0 _ a _ c a n c e r   =   " < b r > < b > Y e s   t o   S t r o n g   F a m i l y   H i s t o r y   o f   C a n c e r < / b > < b r > S u g g e s t   y o u   w o r k   c l o s e l y   w i t h   y o u r   D o c t o r   t o   f o l l o w   t h e   r e c o m m e n d a t i o n s   o f   t h e   A m e r i c a n   C a n c e r   \  
     S o c i e t y   f o r   C a n c e r   S c r e e n i n g   b a s e d   o n   y o u r   A g e   a n d   S e x .   < b r > T h e r e   i s   e v i d e n c e   t h a t   a   d i e t   t h a t   c o n t a i n s   a   l a r g e   p e r c e n t a g e   o f   \  
     l e a f y   g r e e n   v e g e t a b l e s   a n d   a n t i - o x i d a n t s   m a y   s t r e n g t h e n   t h e   b o d y  s   d e f e n s e s   a g a i n   i n v a d i n g   c a n c e r   c e l l s .     T h e r e   i s   a l s o   \  
     s o m e   e v i d e n c e   t h a t   a s   a   g e n e r a l   r u l e ,   v e g e t a r i a n s   a p p e a r   t o   h a v e   a   s l i g h t l y   d e c r e a s e d   r i s k   o f   d e v e l o p i n g   c a n c e r   o f   \  
     c e r t a i n   o r g a n s . " ;  
      
 v a r   q 3 2 _ a s p i r i n   =   " < b r > < b > Y e s   t o   a s p i r i n   o r   b l o o d   t h i n n e r s . < / b > < b r > T h e r e   i s   e v i d e n c e   t h a t   c e r t a i n   a s p i r i n   t a b l e t s   m a y   i n c r e a s e   t h e   r i s k   o f   u l c e r s   a n d   b l e e d i n g   f r o m   t h e   \  
   s t o m a c h   w a l l s ,   i f   t a k e n   o n   a n   e m p t y   s t o m a c h .   M a n y   d o c t o r s   s u g g e s t   t h a t   a s p i r i n   t a b l e t s   b e   t a k e n   a f t e r   a   \  
   l a r g e   m e a l . B l o o d     t h i n n e r s   a r e   o f t e n   u s e d   b y   d o c t o r s   t o   p r o t e c t   y o u   f r o m   b l o o d   c l o t s   t o   t h e   l u n g s [ p u l m o n a r y   e m b o l u s ]   \  
   a n d     b l o o d   c l o t s   t o   t h e   b r a i n   [ s t r o k e s ] .   Y o u   m u s t   w o r k   c l o s e l y   w i t h   y o u r   d o c t o r s   \  
   t o   m a k e   s u r e   y o u r     b l o o d   d o e s   n o t   b e c o m e   t o o   t h i n .   P e o p l e   o n   b l o o d   t h i n n e r s   s h o u l d   a v o i d   s m o k i n g ,   u s i n g   a s p i r i n s   a n d   \  
   o t h e r   m e d i c i n e s   t h a t   a r e   k n o w n   t o   i n t e r f e r e   w i t h   b l o o d   c l o t t i n g .   " ;  
    
 v a r   q 3 5 _ 3 p l u s m e d s   =   " < b r > < b > Y e s   t o   3   o r   m o r e   p r e s c r i p t i o n   m e d i c i n e s < / b > < b r > Y o u   i n d i c a t e d   t h a t   y o u   a r e   o n   m u l t i p l e   p r e s c r i p t i o n s   m e d i c a t i o n s .   Y o u   s h o u l d   w o r k   \  
       c l o s e l y   w i t h   y o u r     d o c t o r   t o   m a k e   s u r e   t h e s e   d r u g s   d o   n o t   i n t e r f e r e   w i t h   e a c h   o t h e r .   Y o u   s h o u l d   a l s o   r e m e m b e r   \  
       t h a t   p o o r   c o n t r o l   o f   y o u r   n u t r i t i o n ,       w e i g h t ,   a n d   s t r e s s   l e v e l   c o u l d   m a k e   i t   h a r d e r   f o r   m a n y   o f   y o u r   m e d i c i n e s   \  
       t o   w o r k   e f f e c t i v e l y . " ;  
      
 v a r   q 3 0 _ b _ y e s   =   " < b r > < b > Y e s   t o   S t r o n g   F a m i l y   H i s t o r y   o f   D i a b e t e s < / b > < b r > R e c e n t   s t u d i e s   i n   O b e s e   t e e n a g e r s   s u g g e s t   t h a t   d i e t a r y   i n t a k e   m a y   p l a y   a   s t r o n g   r o l e   \  
       i n   t h e   d e v e l o p m e n t   o f     T y p e   2   ( A d u l t   O n s e t )   D i a b e t e s .     T h e s e   a n d   o t h e r   s t u d i e s   s u g g e s t   t h a t   y o u   c a n   r e d u c e   y o u r   \  
       r i s k   o f   d e v e l o p i n g     A d u l t   O n s e t   D i a b e t e s   M e l l i t u s   a n d   t h e   c o m p l i c a t i o n s   o f   D i a b e t e s   b y   m o d i f y i n g   y o u r   d i e t   t o   \  
 	 m a i n t a i n   t h e   B o d y   W e i g h t   t h a t   i s   ' I d e a l '   f o r   y o u r   H e i g h t . " ;  
      
 v a r   q 4 0 _ f i n a n c e s   =   " < b r > < b > Y e s   t o   F i n a n c i a l   P r e s s u r e s   i n   y o u r   l i f e   n o w . < / b > < b r > H e a l t h   e x p e r t s   a g r e e   t h a t   F i n a n c i a l   p r e s s u r e s   i n   t o d a y  s   s o c i e t y   a r e   e x a c e r b a t i n g   m a n y   \  
       s t r e s s - r e l a t e d i l l n e s s e s   i n c l u d i n g   H y p e r t e n s i o n   a n d   M e n t a l   I l l n e s s .   T h i s   p r o b l e m   a p p e a r s   t o   b e   a   2 - w a y   s t r e e t .   \  
       O n   t h e   o n e   h a n d ,   m a n y   f a m i l i e s   a r e   b e i n g   f a c i n g   b a n k r u p t c y   b e c a u s e   o f   t h e   S t r e s s   c a u s e d   b y   t h e   e x p e n s e s   o f   \  
       a n   u n a n t i c i p a t e d   s e r i o u s   f a m i l y   i l l n e s s .     O n   t h e   o t h e r   h a n d ,   t h e   l o s s   o f   a   j o b   o r   a   h o u s e   f o r e c l o s u r e   s i t u a t i o n   \  
       i n   t h e   f a m i l y   c a n   l e a d   t o   S t r e s s   r e l a t e d   i l l n e s s e s ,   f a m i l y   d i s r u p t i o n   a n d   d i v o r c e .   < b r > < b r > I f   y o u   a r e   f e e l i n g   t r a p p e d   b y   \  
       y o u r   f i n a n c i a l   c i r c u m s t a n c e s ,   y o u   m a y   w a n t   t o   c o n s i d e r   c o n s u l t i n g   o n e   o f   t h e   f r e e   F i n a n c i a l   C o u n s e l i n g   S e r v i c e s   \  
       t h a t   a r e   a v a i l a b l e   f r o m   y o u r   C o u n t y ,   C i t y   o r   S t a t e . " ;  
        
 v a r       q 4 3 _ n o _ g r e e n _ t e a   =   " < b r > < b > N o   t o   d a i l y   G r e e n   T e a   s u p p l e m e n t a t i o n < / b > < b r > G r e e n   T e a   i s   a   r e f r e s h i n g   b e v e r a g e   t h a t   n o w   c o m e s   i n   m a n y   f l a v o r s   a n d   \  
   c o n t a i n s   a n t i o x i d a n t s   t h a t   h e l p   p r o t e c t   y o u r   h e a r t   a n d   b l o o d   v e s s e l s .   S c i e n t i f i c   r e s e a r c h   i n   b o t h   \  
   A s i a   a n d   t h e   w e s t   i s   p r o v i d i n g   h a r d   e v i d e n c e   f o r   t h e   h e a l t h   b e n e f i t s     \  
   l o n g   a s s o c i a t e d   w i t h   d r i n k i n g   g r e e n   t e a .   < b r > < b r >   I n   1 9 9 4   t h e   J o u r n a l   o f   t h e   N a t i o n a l   C a n c e r   I n s t i t u t e   \  
   p u b l i s h e d   t h e   r e s u l t s   o f   a n   e p i d e m i o l o g i c a l   s t u d y   i n d i c a t i n g   t h a t   d r i n k i n g   g r e e n   t e a   r e d u c e d   \  
   t h e   r i s k   o f   e s o p h a g e a l   c a n c e r   i n   C h i n e s e   m e n   a n d   w o m e n   b y   n e a r l y   s i x t y   p e r c e n t .   U n i v e r s i t y   \  
   o f   P u r d u e   r e s e a r c h e r s   r e c e n t l y   c o n c l u d e d   t h a t   a   c o m p o u n d   i n   g r e e n   t e a   i n h i b i t s   t h e   g r o w t h   o f   \  
   c a n c e r   c e l l s .   T h e r e   i s   a l s o   r e s e a r c h   i n d i c a t i n g   t h a t   d r i n k i n g   g r e e n   t e a   r e g u l a r l y   l o w e r s   t o t a l   \  
   C h o l e s t e r o l   l e v e l s ,   a n d   c a n   i m p r o v e   t h e   r a t i o   o f   g o o d   ( H D L )   c h o l e s t e r o l   t o   b a d   ( L D L )   c h o l e s t e r o l .   \  
   < b r > < b r > S o m e   W e i g h t   C o n t r o l   s p e c i a l i s t s   h a v e   r e c e n t l y   s u g g e s t e d   t h a t   a   c u p   o f   G r e e n   T e a   t w i c e   d a i l y   c a n   \  
   h e l p s   t o   s u p p r e s s   t h e   a p p e t i t e   i n   i m p r o v e   c o m p l i a n c e   i n   p a t i e n t s   w h o   a r e   o n   a   c a l o r i e   r e s t r i c t e d   \  
   w e i g h t   c o n t r o l   d i e t . " ;  
                
 v a r   q 4 4 _ n o _ o m e g a 3   =   " < b r > < b > N o   t o   O m e g a - 3   d a i l y   i n t a k e . < / b > < b r > O m e g a - 3   f a t t y   a c i d s   a r e   e s s e n t i a l   t o   n o r m a l   g r o w t h   a n d   d e v e l o p m e n t   a n d   t h e y   p l a y   a   c r u c i a l   r o l e   i n   b r a i n   f u n c t i o n .   \  
   O m e g a - 3   f a t t y   a c i d s   c a n n o t   b e   m a n u f a c t u r e d   b y   t h e   b o d y   a n d   m u s t   b e   o b t a i n e d   f r o m   f o o d   t h a t   w e   e a t .     < b r > O m e g a - 3   f a t t y   a c i d s   c a n   b e   f o u n d     \  
   i n   f i s h   s u c h   a s   s a l m o n ,   t u n a ,   a n d   h a l i b u t ,   s o m e   m a r i n e   a l g a e   a n d   k r i l l .     C e r t a i n   p l a n t s   ( i n c l u d i n g   p u r s l a n e ) ,   s o m e   s e e d s   ( i n c l u d i n g   C h i a   s e e d )     \  
   a n d   c e r t a i n   n u t   o i l s   a l s o   c o n t a i n   O m e g a - 3   f a t t y   a c i d s .     M a n y   w e s t e r n   d i e t s   a r e   l o w   i n   O m e g a - 3   a c i d s   a n d   s p e c i a l i s t s   t h a t   w o r k   i n   t h e   f i e l d   \  
   o f   P r e v e n t i v e   H e a l t h   e n c o u r a g e   p a t i e n t s   t o   s u p p l e m e n t   t h e i r   d i e t   w i t h   a   h i g h   q u a l i t y   o r g a n i c   O m e g a - 3   s u p p l e m e n t .   < b r >   U n f o r t u n a t e l y ,   m a n y   o f   t h e   l a r g e r   \  
   f i s h e s   i n   t h e   o c e a n   a r e   c o n t a m i n a t e d   w i t h   M e r c u r y   a n d   c a u t i o n   m u s t   b e   e x e r c i s e d   i f   y o u   p l a n t   t o   i n c r e a s e   y o u r   f i s h   i n t a k e   t o   m o r e   t h a n   2   t o   3   t i m e s   p e r   w e e k . " ;  
    
 v a r   q 4 5 _ n o _ v i t _ d 3   =   " < b r > < b > N o   t o   V i t a m i n   D - 3   s u p p l e m e n t < / b >   < b r > V i t a m i n   D - 3   i s   a   f a t   s o l u b l e   v i t a m i n   t h a t   p r o m o t e s   h e a l t h y   t e e t h   a n d   b o n e s   i n   k i d s .   I t   a l s o   p r o m o t e s   c a l c i u m   a b s o r p t i o n ,   \  
     b o n e   m a s s ,   b u i l d i n g ,   t h e   p r e v e n t i o n   o f   b o n e   l o s s ,   a n d   i t   p r o t e c t s   a g a i n s t   m u s c l e   w e a k n e s s .   I t   l o w e r s   t h e   r i s k   o f   c o l o n ,   b r e a s t ,     \  
     a n d   p r o s t a t e   c a n c e r s .   I t   h a s   b e e n   d e m o n s t r a t e d   t o   i m p r o v e   t h e   f u n c t i o n i n g   i f   t h e   I m m u n e   s y s t e m ,   i m p r o v e   r h e u m a t o i d   a r t h r i t i s   a n d   \  
     p r e v e n t   a u t o   i m m u n e   d i s e a s e s . < b r >   R e c e n t   s t u d i e s   h a v e   s u g g e s t e d   t h a t   d e s p i t e   V i t a m i n   D   s u p p l e m e n t a t i o n   o f   m a n y   f o o d s ,   i n c l u d i n g   M i l k   , \  
     B u t t e r ,   B r e a d   a n d   s o m e   C e r e a l s ,   V i t a m i n   D   l e v e l s   a r e   l o w   i n   m u c h   o f   t h e   A m e r i c a n   p o p u l a t i o n .     D a r k e r   s k i n n e d   r a c e s   i n   l i v i n g   i n     \  
     t e m p e r a t e   z o n e   s e e m   t o   b e   a t   h i g h e r   r i s k   a n d   o n e   s t u d y   h a s   d e m o n s t r a t e d   a   m a r k e d   d e f i c i e n c y   i n   b l a c k   t e e n a g e r s .   S o m e   H e a l t h   C a r e   P r o v i d e r s   \  
     a r e   n o w   r e c o m m e n d i n g   V i t a m i n   D - 3   s u p p l e m e n t a t i o n .     P l e a s e   c h e c k   w i t h   y o u r   H e a l t h   C a r e   P r o v i d e r   t o   s e e   w h e t h e r   V i t a m i n   D - 3   s u p p l e m e n t a t i o n   i s   r i g h t   f o r   y o u . " ;  
      
 v a r   q 4 7 _ 5 0 _ s t r e s s   =   " < b r > < b > Y e s   t o   I n c r e a s e d   S t r e s s   F a c t o r s < / b > < b r > * * M a n a g i n g   s t r e s s   i s   a l l   a b o u t    t a k i n g   c h a r g e    a n d   a c h i e v i n g    b a l a n c e    i n   y o u r   l i f e :   t a k i n g   c h a r g e   o f   y o u r   t h o u g h t s ,   y o u r   e m o t i o n s ,   \  
       y o u r   s c h e d u l e ,   y o u r   e n v i r o n m e n t ,   a n d   t h e   w a y   y o u   d e a l   w i t h   p r o b l e m s .   Y o u r   u l t i m a t e   g o a l   s h o u l d   b e   a   b a l a n c e d   l i f e ,   w i t h   t i m e   f o r   w o r k ,   r e l a t i o n s h i p s ,   \  
       r e l a x a t i o n ,   a n d   f u n      p l u s   t h e   r e s i l i e n c e   t o   h o l d   u p   u n d e r   p r e s s u r e   a n d   m e e t   c h a l l e n g e s   h e a d   o n . < b r >   " ;  
        
 v a r   s t r e s s 1   =   "   * * ( S o m e   s u g g e s t i o n s   t a k e n   f r o m   w w w . H e l p g u i d e . o r g ) I n   a   s u r v e y   o f   M y   P r e v e n t i v e   H e a l t h   C l i e n t s ,   t h e y   \  
       s u g g e s t e d   t h e   f o l l o w i n g   o p t i o n s   a s   w a y s   o f   < c l e a r i n g   y o u r   h e a d >   ( r e d u c i n g   y o u r   s t r e s s )   w h e n   y o u   f e e l   l i k e   y o u   a r e   \  
       r e a c h i n g   - t h e   e n d   o f   y o u r   r o p e : < b r > · 	 T a k e   a   t r i p   t o   t h e   M a l l   a n d   w i n d o w   s h o p   f o r   a   c o u p l e   o f   h o u r s   t o   c l e a r   y o u r   h e a d < b r > ·   \  
       	 C a l l   a   p a r e n t ,   g r a n d p a r e n t   o r   a n   e x p e r i e n c e d   s e n i o r   c i t i z e n   i n   y o u r   l i f e   t h a t   w i l l   < l i s t e n >       t o   y o u   a n d   n o t   l e c t u r e   \  
       	 y o u .   ( E x p e r i e n c e   c o u n t s   a n d   c h a n c e s   a r e   g o o d   t h a t   t h e y   w i l l   h a v e   s u c c e s s f u l l y   d e a l t   w i t h   a   s i m i l a r   p r o b l e m   i n   t h e i r   l i f e ) " ;  
      
 	  
 v a r   s t r e s s 2   =   " ·   C a l l   u p   a   f r i e n d   a n d   g o   f o r   a   w a l k   o r   j o g   w i t h   h i m   o r   h e r < b r > ·   I f   y o u   h a v e   a   P r a y e r   G r o u p ,   \  
 c a l l   o r   v i s i t   a   p r a y e r   p a r t n e r   a n d   a s k   t h e m   t o   p r a y   w i t h   y o u < b r > ·   R e n t   a   m o v i e   y o u   h a v e   a l w a y s   w a n t e d   t o   s e e . \  
 S u g g e s t   a   c o m e d y   o r   m o v i e   t h a t   m a k e s   y o u   l a u g h · " ;  
  
 v a r   s t r e s s 3   =   " ·   L i s t e n   t o   s o m e   o f   y o u r   f a v o r i t e   m u s i c   f o r   a n   h o u r   o r   s o   t o   c l e a r   t h e   c o b w e b s   f r o m   y o u r   h e a d .   \  
   < b r > ·   C o n s i d e r   g e t t i n g   s o m e   P r o f e s s i o n a l   h e l p   t o   m a n a g e   y o u r   s i t u a t i o n ,   e s p e c i a l l y   i f   t h e   c o s t   i s   n o t   p r o h i b i t i v e . < B R > \  
   T h e n ,   w h e n   y o u   c a n   t h i n k   m o r e   c l e a r l y ,   s i t   a n d   w r i t e   d o w n   t h e   m a i n   f a c t s   a b o u t   t h e   p r o b l e m   t h a t   y o u   a r e   f a c i n g   \  
   a n d   w r i t e   d o w n   a   s t e p - b y - s t e p   p l a n   t o   b e g i n   t o   t a c k l e   y o u r   p r o b l e m   h e a d - o n .   I t   i s   v e r y   h a r d   t o   b e g i n   t o   s o l v e   \  
   a   p r o b l e m   i f   y o u   k e e p   i t   a l l   i n   y o u r   h e a d   a n d   d o   n o t   w r i t e   i t   d o w n   o n   p a p e r . "  
  
 v a r   s t r e s s 4   = "   Y o u   s p e n d   m o s t   o f   y o u r   t i m e   b a t t l i n g   t h e   d e m o n s   i n   y o u r   h e a d . < b r > < b r >   T h e   c o p i n g   s t r a t e g i e s   l i s t e d \  
   b e l o w   m a y   t e m p o r a r i l y   r e d u c e   s t r e s s ,   b u t   t h e y   c a u s e   m o r e   d a m a g e   i n   t h e   l o n g   r u n : \  
   < b r > ·   S m o k i n g < b r > ·   D r i n k i n g   t o o   m u c h < b r > ·   O v e r e a t i n g   o r   u n d e r - e a t i n g < b r > ·   Z o n i n g   o u t   f o r   h o u r s   i n   f r o n t   o f \  
   t h e   T V   o r   c o m p u t e r < b r > ·   W i t h d r a w i n g   f r o m   f r i e n d s ,   f a m i l y ,   a n d   a c t i v i t i e s 	 < b r > ·   U s i n g   p i l l s   o r   d r u g s   t o   r e l a x   \  
   < b r > ·   S l e e p i n g   t o o   m u c h < b r > · 	 P r o c r a s t i n a t i n g < b r > ·   F i l l i n g   u p   e v e r y   m i n u t e   o f   t h e   d a y   t o   a v o i d   f a c i n g   p r o b l e m s < b r > · 	 \  
   T a k i n g   o u t   y o u r   s t r e s s   o n   o t h e r s   ( l a s h i n g   o u t ,   a n g r y   o u t b u r s t s ,   p h y s i c a l   v i o l e n c e   d i r e c t e d   a t   a   S p o u s e \  
   o r   a t   y o u r   c h i l d r e n ) " ;  
    
      
         / /   i n i t a l i z e   t h e   s c o r e   t o   z e r o 	  
         v a r   a g e C a t e g o r y   =   0 ;  
         v a r   u n d e r 3 0   =   0 ;  
         v a r   y o u r S c o r e   =   0  
         v a r   c u r V a l u e   =   0  
         v a r   m u l t V a l u e = 0  
         v a r   i s S p e c Q   =   0  
         v a r   p r e v _ n a m e = " d u m m y "  
         v a r   s F l d ;  
         v a r   f o r m _ f i e l d ;  
         v a r   q s t _ n a m e ;  
         v a r   w o r k i n g A r r a y   =   A r r a y ( 5 5 ) ;  
         v a r   a n s w e r A r r a y   =   A r r a y ( 1 0 0 ) ; 	  
         v a r   i V a l u e ;  
         v a r   i s H i s t o r y D i a b e t e s   =   0 ;  
         v a r   m e s s a g e = " " ;  
         v a r   m e s s a g e 2 = " " ;  
         v a r   e r r o r   = " " ;  
         v a r   q 1 R e p = " " ;  
         v a r   q 2 R e p =   " " ;  
         v a r   q 3 R e p = " " ;    
         v a r   q 4 R e p = " " ;  
         v a r   q 1 0 R e p = " " ;  
         v a r   q 2 5 R e p = " " ;  
         v a r   q 2 7 R e p = " " ;  
         v a r   q 3 5 R e p = " " ;  
         v a r   q 3 7 R e p = " " ;  
         v a r   q 3 8 R e p = " " ;  
         v a r   q 4 1 R e p = " " ;  
         v a r   q 4 2 R e p = " " ;  
         v a r   q R e p ;  
         v a r   q u e s t i o n A n s w e r e d   =   - 1 ;  
         f o r   (   m   =   0 ;   m   <   5 5 ;   m + +   )  
         	 w o r k i n g A r r a y [ m ]   =   " " ;  
    
  
         f o r   (   m   =   0 ;   m   <   1 0 0 ;   m + +   )  
         	 a n s w e r A r r a y [ m ]   =   " " ;  
          
         / /   R u n   t h r o u g h   a l l   t h e   f o r m   f i e l d s   a n d   c a l c u l a t e   t h e   s c o r e  
       / /   s p e c i a l   q u e s t i o n s   m a t r i x ,   q u e s t i o n   w i t h   m u l t i p l e   o p t i o n s  
         v a r   s p x 1   =   [ " q 2 - a " ,   " q 3 - a " ,     " q 5 - a " ,   " q 5 - b " ,   " q 6 - a " ,   " q 6 - b " ,     " q 7 - a " ,   " q 7 - b " ,   " q 8 - a " ,   " q 8 - b " ,   " q 8 - c " ,   " q 1 9 - a " ,   " q 1 9 - b " ,   " q 2 0 - a " ,  
         	 	 	     " q 2 0 - b " ,   " q 2 1 - a " ,   " q 2 1 - b " ,   " q 2 1 - c " ,   " q 2 3 - a " ,   " q 2 3 - b " ,   " q 2 6 - a " ,   " q 2 6 - b " ,   " q 2 6 - c " ,   " q 3 0 - a " ,   " q 3 0 - b " ,   " q 3 0 - c " ,   " q 3 2 - a " ,   " q 3 2 - b " ,    
                                 " q 4 8 - a " ,   " q 4 8 - b " ,   " q 5 0 - a " ,   " q 5 0 - b " ,   " q 5 0 - c "   ]  
 	  
         f o r   ( v a r   i = 0 ;   i   <   f r m . e l e m e n t s . l e n g t h ;   i + + )    
         {   / /   m a i n   f o r   l o o p  
          
 	 	 / * * * * * * * * * * * * * * * * * * * * * * * * * * *   V A L I D A T E   U S E R   N A M E   A N D   E M A I L   * * * * * * * * * * * * * /  
                 / /   G e t   t h e   c u r r e n t   f i e l d  
                 f o r m _ f i e l d   =   f r m . e l e m e n t s [ i ]  
                 i f (   f o r m _ f i e l d . t y p e     = =   " t e x t "   & &   f o r m _ f i e l d . n a m e   = = " T 1 " )  
                 	 e r r o r   + =   v a l i d a t e U s e r n a m e ( f o r m _ f i e l d ) ;  
                 i f (   f o r m _ f i e l d . t y p e   = =   " t e x t "   & &   f o r m _ f i e l d . n a m e   = =   " T 2 "   )  
                 	 e r r o r   + =     v a l i d a t e E m a i l ( f o r m _ f i e l d ) ;  
                 i f   ( e r r o r   ! =   " "   )    
                 {  
 	 	 a l e r t ( " S o m e   f i e l d s   n e e d   c o r r e c t i o n : \ n "   +   e r r o r ) ;  
       	 	 r e t u r n   f a l s e ; 	  
       	 }  
       	          
        
  
 	 i f   (   f o r m _ f i e l d . t y p e   = =   " r a d i o "   | |   f o r m _ f i e l d . t y p e   = =   " c h e c k b o x "   )  
 	 {   / /   t y p e   f i e l d   c h e c k  
                         / /   G e t   t h e   f i e l d ' s   n a m e  
 	         q s t _ n a m e   =   f o r m _ f i e l d . n a m e  
 	        
 	         i V a l u e   =   i ;  
 	         / /   p r i n t   t h e   f i e l d   n a m e   -   d e b u g g i n g   p u r p o s e s   o n l y  
 	         i f   ( f o r m _ f i e l d . c h e c k e d )  
 	         	 a n s w e r A r r a y [ i ]   =   f o r m _ f i e l d . n a m e   +   " :   "   +   f o r m _ f i e l d . i d ;  
 	          
 	 	 	  
 	 	 / /   c h e c k   f o r   t h o s e   m u l t i   a n s w e r   q u e s t i o n s  
 	 	 f o r (   v a r   j = 0 ;   j   <   s p x 1 . l e n g t h ;   j + +   )  
 	 	 {     / /   f o r   l o o p ,   s e e   i f   t h i s   i s   o n e   o f   t h e   s p e c i a l   q u e s t i o n s  
 	 	           i f   (   q s t _ n a m e   = =   s p x 1 [ j ]   )  
 	 	           { / /   i f   q s t _ n a m e ,   y e s   s p e c i a l   q u e s t i o n  
 	 	 	       v a r   s p e c S t r   =   q s t _ n a m e . s u b s t r i n g ( 0 ,   q s t _ n a m e . i n d e x O f ( " - " ) ) ;    
 	 	 	       q s t _ n a m e   =   s p e c S t r ;    
 	 	 	       i f (   p r e v _ n a m e   ! =   q s t _ n a m e   )  
 	 	 	       {  
 	 	 	 	 i f (   c u r V a l u e   >   2 )  
 	 	 	 	 	 c u r V a l u e   =   2 ;  
 	 	 	 	 y o u r S c o r e   + =   ( c u r V a l u e   *   1 ) 	 	  
 	 	 	 	 i s S p e c Q   =   0 ;  
                                                       } 	  
 	 	 	       i f (   i s S p e c Q   = =   0   )  
 	 	 	       {     / /   n e w   s p e c i a l   q u e s t i o n ,   i n i t i a l i z e  
 	 	 	 	 p r e v _ n a m e =   q s t _ n a m e  
 	 	 	 	 c u r V a l u e   =   0  
 	 	 	 	 q u e s t i o n A n s w e r e d   =   - 1 ;  
 	 	 	         } 	 / /   n e w   s p e c i a l   q u e s t i o n ,   i n i t i a l i z e  
 	 	 	         i s S p e c Q   =   1 ;  
 	 	 	 	  
 	 	 	         i f (   (   p r e v _ n a m e   = =   q s t _ n a m e   )   & &   f o r m _ f i e l d . c h e c k e d   )  
 	 	 	         {   / /   U s e r   c h e c k e d   o n e   o f   t h e   a n s w e r s  
 	 	 	 	 	  
 	 	 	 	 c u r V a l u e   + =   (   f o r m _ f i e l d . v a l u e   * 1 ) ;  
 	 	 	 	 q u e s t i o n A n s w e r e d   =   c u r V a l u e ;  
 	 	 	 	 / /   F i n d   o u t   w h a t   i s   c h e c k e d   a n d   a d d   s p e c i a l   i n f o   f o r   k e y   q u e s t i o n s  
 	 	 	 	  
 	 	 	 	 q R e p = f o r m _ f i e l d . i d   +   " | " ;  
  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 2 " )  
 	 	 	 	 	 w o r k i n g A r r a y [ 4 1 ]   + =   q R e p ;  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 3 " )  
 	 	 	 	 	 w o r k i n g A r r a y [ 4 2 ]   + =   q R e p ;  
 	 	 	 	 / /   Q U E S T I O N   6 ,   G U M   D I S E A S E ,   F I L L   I N   R E S P O N S E   F O R   D I S P L A Y  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 6 "   )  
 	 	 	 	 {  
 	 	 	 	 	 i f   ( s p x 1 [ j ]   = =   " q 6 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 5 ]   =   q 6 a _ y e s ;  
 	 	 	 	 	 e l s e   i f   (   s p x 1 [ j ]   = =   " q 6 - b "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 6 ]   =   q 6 b _ y e s ;  
 	 	 	 	 } 	  
 	 	 	 	 	  
 	 	 	 	 / /   Q U E S T I O N   2 0 ,   C H R O N I C   D I S E A S E ,     F I L L   I N   R E S P O N S E   F O R   D I S P L A Y  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 2 0 "   )  
 	 	 	 	 {  
 	 	 	 	 	 i f   ( s p x 1 [ j ]   = =   " q 2 0 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 2 ]   =     q 2 0 _ 2 4 _ y e s ;  
 	 	 	 	 	 e l s e   i f   (   s p x 1 [ j ]   = =   " q 2 0 - b "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 2 ]   =   q 2 0 _ 2 4 _ y e s   ;  
 	 	 	 	 } 	  
  
 	 	 	 	 / / * * *   Q U E S T I O N   2 1 - c , B L O O D   I N   S T O O L ,   P L U S   A G E ,     F I L L   I N   R E S P O N S E   F O R   D I S P L A Y  
  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 2 1 "   )  
 	 	 	 	 { 	 	 	 	  
 	 	 	 	 	   i f (   s p x 1 [ j ]   = =   " q 2 1 - c "   )    
 	 	 	 	 	   	 i f   (   f o r m _ f i e l d . v a l u e   = =   " 1 "   )   / /   y e s   I S   c H E C K E D  
 	 	 	 	 	 	 	 i f ( a g e C a t e g o r y   = =   0   )   / /   R E P O R T   B A S E D   O N   A G E  
 	 	 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 1 ]   =   q 2 1 C _ l e s s _ 5 0 ;    
 	 	 	 	 	 	 	 e l s e  
 	 	 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 1 ]   =   q 2 1 C _ o v e r _ 5 0 ;  
 	 	 	 	 }  
 	 	 	 	 	  
 	 	 	 	 / /   Q U E S T I O N   3 0 a ,   F A M I L Y   H I S T O R Y   O F   C A N C E R  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 3 0 "   )  
 	 	 	 	 {  
 	 	 	 	 	 i f   ( s p x 1 [ j ]   = =   " q 3 0 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 7 ]   =   q 3 0 _ a _ c a n c e r   ;  
 	 	 	 	 } 	  
 	 	 	 	 / /   Q U E S T I O N   3 2 ,   Y E S   A S P I R I N   O R   B L O O D   T H I N N E R S  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 3 2 "   )  
 	 	 	 	 {  
 	 	 	 	 	 i f   ( s p x 1 [ j ]   = =   " q 3 2 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 8 ]   =   q 3 2 _ a s p i r i n   ;  
 	 	 	 	 	 e l s e   i f   (   s p x 1 [ j ]   = =   " q 3 2 - b "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 8 ]   =   q 3 2 _ a s p i r i n   ;  
 	 	 	 	 } 	  
 	 	 	 	 	  
 	 	 	 	 / /   Q U E S T I O N   4 8 ,   D I V O R C E  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 4 8 "   )  
 	 	 	 	 {   / /   q 4 8  
 	 	 	 	 	 i f (   ( s p x 1 [ j ]   = =   " q 4 8 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )   | |    
 	 	 	 	 	 	   ( s p x 1 [ j ]   = =   " q 4 8 - b "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )   )  
 	 	 	 	 	 {  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 5 ]   =     q 4 7 _ 5 0 _ s t r e s s ;    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 6 ]   =     s t r e s s 1 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 7 ]   =     s t r e s s 2 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 8 ]   =     s t r e s s 3 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 9 ]   =     s t r e s s 4 ;  
 	 	 	 	 	 }  
 	 	 	 	 } / /   q 4 8  
 	 	 	 	 	  
 	 	 	 	 / /   Q U E S T I O N   5 0 ,   F O R E C L O S U R E  
 	 	 	 	 i f (   q s t _ n a m e   = =   " q 5 0 "   )  
 	 	 	 	 {   / /   q 5 0  
 	 	 	 	 	 i f (   ( s p x 1 [ j ]   = =   " q 5 0 - a "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )   | |    
 	 	 	 	 	 	   ( s p x 1 [ j ]   = =   " q 5 0 - b "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " ) | |  
 	 	 	 	 	 	   ( s p x 1 [ j ]   = =   " q 5 0 - c "   & &   f o r m _ f i e l d . v a l u e   = =   " 0 " )   )  
 	 	 	 	 	 {   / /   g e t   a d v i c e  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 5 ]   =     q 4 7 _ 5 0 _ s t r e s s ;    
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 6 ]   =     s t r e s s 1 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 7 ]   =     s t r e s s 2 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 8 ]   =     s t r e s s 3 ;  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 2 9 ]   =     s t r e s s 4 ;  
 	 	 	 	 	 }   / /   g e t   a d v i c e  
 	 	 	 	 } / /   q 5 0  
 	 	 	         } / /   U s e r   c h e c k e d   o n e   o f   t h e   a n s w e r s  
 	 	 	 	 / / d o c u m e n t . w r i t e ( q s t _ n a m e   +   " < B R > " ) ;  
 	 	 	 	 b r e a k ;  
 	 	         } 	 / /   i f ,   q s t _ n a m e ,   y e s   s p e c i a l   q u e s t i o n  
 	 	 } / /   f o r l o o p ,   c h e c k   t o   s e e   i f   t h i s   i s   a   s p e c i a l   q u e s t i o n  
 	 	  
 	 	 i f (   q s t _ n a m e   = =   " m 1 "   )  
 	 	         c u r V a l u e   =   0 ;  
 	 	 / /   * * * * *     M A X   V A L U E   F O R   A   Q U E S T I O N   I S   O N L Y   2   P O I N T S ,   A D J U S T   T O   2   I F   >   T H A N   2  
 	 	 / /   S P E C I A L   Q U E S T I O N   -   S P L I T   I N T O   S E C T I O N S   C O D E  
 	 	 i f (   i s S p e c Q   = =   1   & &   ( p r e v _ n a m e   ! =   q s t _ n a m e )   )  
 	 	 {   / /   s p e c i a l   q u e s t i o n   a d d  
 	 	 	 i f (   q u e s t i o n A n s w e r e d   = =   - 1   )   / /   N o   a n s w e r s   s e l e c t e d   f o r   t h e   q u e s t i o n ,   n o t i f y   u s e r   &   e x i t  
 	 	 	 {  
 	 	 	 	 / / a l e r t ( " S o m e   q u e s t i o n s   h a v e   n o t   b e e n   a n s w e r e d .   P l e a s e   a n s w e r   q u e s t i o n :   "   +   p r e v _ n a m e ) ;  
 	 	 	 / / 	 b r e a k ;  
 	 	 	 / / 	 r e t u r n   f a l s e ;  
 	 	 	 }  
 	 	 	 i f (   c u r V a l u e   >   2 )  
 	 	 	 	 c u r V a l u e   =   2 ;  
 	 	 	 y o u r S c o r e   + =   ( c u r V a l u e   *   1 ) 	 	  
 	 	 	 i s S p e c Q   =   0 ;  
 	 	 }   / /   s p e c i a l   q u e s t i o n   a d d  
 	 	  
 	 	  
 	 	 / /   - - - - - - - - - - - - - - -   F I N D   O U T   W H A T   I S   C H E C K E D   A N D   F I L L   T H E   A R R A Y   W I T H   A D V I S E 	 	  
 	 	 / /   - - - - - - - - - - - - - - - - C A L C U L A T E   T H E   T O T A L S    
 	 	 i f (   f o r m _ f i e l d . c h e c k e d   & &     i s S p e c Q   = =   0     )  
 	 	 { 	 / /   i f   f i e l d   c h e c k e d   b y   u s e r  
 	 	 	 v a r   i A g e d   =   f o r m _ f i e l d . i d ;  
 	 	 	 / /   * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *   Q U E S T I O N   1 ,   A G E  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 1 "   )  
 	 	 	 {   / /   H A S   T o   B E   Q u e s t i o n   1  
 	 	 	 	 w o r k i n g A r r a y [ 4 3 ]   =   i A g e d ;  
 	 	 	 	 a g e C a t e g o r y   =   1 ;   / /   O v e r   5 0  
  
 	 	 	 	 i f (   i A g e d   = =   " 1 "   )  
 	 	 	 	 {   / /   1 0 - 1 9   a g e  
 	 	 	 	 	 w o r k i n g A r r a y [ 3 ]   =   s u g g e s t _ s t r _ 1 0 _ 1 9 ;    
 	 	 	 	 	 w o r k i n g A r r a y [ 1 ]   =   q 1 _ 1 0 _ 1 9 ;  
 	 	 	 	 	 u n d e r 3 0   =   1 ;  
 	 	 	 	 	 a g e C a t e g o r y   =   0 ;   / /   U n d e r   5 0 ;  
 	 	 	 	 }  
 	 	 	 	 e l s e   i f (   i A g e d   = =     " 2 "   )  
 	 	 	 	 { 	 / /   2 0 - 2 9  
 	 	 	 	 	 w o r k i n g A r r a y [ 4 ]   =   q 1 _ 2 0 _ 3 9 ;  
 	 	 	 	 	 u n d e r 3 0   =   1 ;  
 	 	 	 	 	 a g e C a t e g o r y   =   0 ;   / /   U n d e r   5 0 ;  
 	 	 	 	  
 	 	 	 	 }  
 	 	 	 	 e l s e   i f (   i A g e d   = =   " 3 " )  
 	 	 	 	 { 	 / /   3 0 - 3 9  
 	 	 	 	 	 w o r k i n g A r r a y [ 4 ]   =   q 1 _ 2 0 _ 3 9 ;  
 	 	 	 	     a g e C a t e g o r y   =   0 ;   / /   U n d e r   5 0 ;  
 	 	 	 	 }  
 	 	 	 	 e l s e    
 	 	 	 	 {   / /   4 0 +  
 	 	 	 	 	 w o r k i n g A r r a y [ 4 ]   =   q 1 _ 4 0 _ 4 9 ;  
 	 	 	 	 	 i f (   i A g e d   = =   " 4 "   )  
 	 	 	 	 	 	 a g e C a t e g o r y   =   0 ;   / /   U n d e r   5 0 ;  
 	 	 	 	 }  
 	 	 	 	  
 	 	 	 	  
 	 	 	 }   / /   H A S   T o   B E   Q u e s t i o n   1  
  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 4 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 4 ] =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 1 0 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 5 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 2 5 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 6 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 2 7 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 7 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 3 5 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 8 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 3 7 " )  
 	 	 	 	 w o r k i n g A r r a y [ 4 9 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 3 8 " )  
 	 	 	 	 w o r k i n g A r r a y [ 5 0 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 4 1 " )  
 	 	 	 	 w o r k i n g A r r a y [ 5 1 ]   =   f o r m _ f i e l d . i d ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " q 4 2 " )  
 	 	 	 	 w o r k i n g A r r a y [ 5 2 ] =   f o r m _ f i e l d . i d ;  
  
 	 	 	 / /   * * * * * * * * * * * * * * * * * * * * * * * * * *   Q U E S T I O N   9 ,   S M O K I N G  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 9 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 7 ]   =   q 9 _ y e s ;    
 	 	 	  
 	 	 	 / /   * * * * * * * * * * * * * * * * * * * *   Q U E S T I O N   1 4 ,   F A M I L Y   H I S T O R Y   O F   D I A B E T E S  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 1 4 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 1 "   )  
 	 	 	 	 {  
 	 	 	 	 	 w o r k i n g A r r a y [ 8 ]   =   q 1 4 _ y e s ;    
 	 	 	 	 	 i s H i s t o r y D i a b e t e s   =   1 ;  
 	 	 	 	 }  
 	 	 	 	 	  
 	 	 	 / /   * * * * * * * * * * * * * * * * * * * * * * * * * * * *   Q U E S T I O N   1 5 ,   H E A R T   A T T A C K  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 1 5 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 9 ]   =   q 1 5 _ 1 6 _ y e s ;    
 	 	 	 	 	  
 	 	 	 / /   * * * * * * * * * * * * * * * * * * * * * * * * *   Q U E S T I O N   1 6 , H E A R T   P R O B L E M S  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 1 6 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 1 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 9 ]   =   q 1 5 _ 1 6 _ y e s ;    
 	 	 	 	 	  
 	 	 	 / /   * * *   Q U E S T I O N   1 7 ,   C A N C E R  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 1 7 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 0 ]   =   q 1 7 _ 1 8 _ y e s ;    
 	 	 	 	 	  
 	 	 	 / / * * *   Q U E S T I O N   1 8 ,   C A N C E R   T R E A T M E N T  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 1 8 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 1 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 0 ]   =   q 1 7 _ 1 8 _ y e s ;    
 	 	 	  
 	 	 	  
 	 	 	 	 	 	 	 	  
 	 	 	 / /   * * *   Q U E S T I O N   2 4 , C H R O N I C   I N F E C T I O N S  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 2 4 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 2 ]   =   q 2 0 _ 2 4 _ y e s ;    
 	 	 	  
 	 	 	 / / * * *   Q U E S T I O N   2 5 , O V E R W E I G H T   B Y   M O R E   T H A N   2 5  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 2 5 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   | |   f o r m _ f i e l d . v a l u e   = =   " 1 "   )  
 	 	 	 	 {  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 3 ]   =     q 2 5 _ c d e ;    
 	 	 	 	 	 i f (   i s H i s t o r y D i a b e t e s   = =   1   )  
 	 	 	 	 	 	 w o r k i n g A r r a y [ 1 4 ]   =   q 1 4 _ 2 5 _ y e s    
 	 	 	 	 }  
 	 	 	 	 	  
 	 	 	 / /   * * *   Q U E S T I O N   2 7 ,   S L E E P    
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 2 7 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "   | |   f o r m _ f i e l d . v a l u e   = =   " 1 "   )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 5 ]   =     q 2 7 _ s l e e p   ;    
 	 	 	 	 	  
 	 	 	 / /   * * * * *   Q U E S T I O N   2 8 ,   E X E R C I S E  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 2 8 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 6 ]   =     q 2 8 _ e x e r c i s e   ;    
 	 	 	 	 	  
 	 	 	 / /   * * * *   Q U E S T I O N   3 5 ,   P E R S C R I P T I O N   M E D I C I N E S  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 3 5 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 1 9 ]   =     q 3 5 _ 3 p l u s m e d s     ;    
 	 	 	 	 	  
 	 	 	 / /   * * * * *     Q U E S T I O N   4 0 ,   F I N A N C I A L   P R E S S U R E S  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 0 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 0 ]   =       q 4 0 _ f i n a n c e s   ;    
 	 	 	  
 	 	 	 / /   * * * * *   Q U E S T I O N   4 3 ,   G R E E N   T E A  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 3 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 1 ]   =       q 4 3 _ n o _ g r e e n _ t e a   ;    
 	 	 	  
 	 	 	 / /   * * * * *   Q U E S T I O N   4 4 ,   O M E G A   3  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 4 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 2 ]   =       q 4 4 _ n o _ o m e g a 3     ;    
 	 	 	  
 	 	 	 / /   * * * * * *   Q U E S T I O N   4 5 ,   V I T A M I N   D 3  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 5 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 3 ]   =     q 4 5 _ n o _ v i t _ d 3 ;    
 	 	 	  
 	 	 	 / /   * * * * * *   Q U E S T I O N   4 7 ,   S T R E S S   -   M O V E  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 7 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 {  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 5 ]   =     q 4 7 _ 5 0 _ s t r e s s ;    
 	 	 	 	 	 w o r k i n g A r r a y [ 2 6 ]   =     s t r e s s 1 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 7 ]   =     s t r e s s 2 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 8 ]   =     s t r e s s 3 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 9 ]   =     s t r e s s 4 ;  
 	 	 	 	 }  
 	 	 	  
 	 	 	 / /   * * * * * *   Q U E S T I O N   4 9 , S T R E S S   -   D E A T H  
 	 	 	 i f (   f o r m _ f i e l d .   n a m e   = =   " q 4 9 "   )  
 	 	 	 	 i f (   f o r m _ f i e l d . v a l u e   = =   " 0 "     )  
 	 	 	 	 {  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 5 ]   =     q 4 7 _ 5 0 _ s t r e s s ;    
 	 	 	 	 	 w o r k i n g A r r a y [ 2 6 ]   =     s t r e s s 1 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 7 ]   =     s t r e s s 2 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 8 ]   =     s t r e s s 3 ;  
 	 	 	 	 	 w o r k i n g A r r a y [ 2 9 ]   =     s t r e s s 4 ;  
 	 	 	 	 }  
  
  
 	 	 	 c u r V a l u e   =   f o r m _ f i e l d . v a l u e ;  
 	 	 	 i f (   f o r m _ f i e l d . n a m e   = =   " m 1 "   )  
 	 	         	 	 c u r V a l u e   =   0 ;  
 	 	 	 i f   (   f o r m _ f i e l d . n a m e   = =   " q 2 2 "   & &   u n d e r 3 0   = = " 1 "   & &   f o r m _ f i e l d . v a l u e = =   " 0 "   )  
 	 	 	 	 c u r V a l u e   = 2 ; 	  
 	 	  
 	 	 	 / / d o c u m e n t . w r i t e ( c u r V a l u e   + " < B R > " ) ;  
 	 	 	 / /   a d d   t h e   v a l u e   t o   t h e   t o t a l  
 	 	 	   y o u r S c o r e   + =   ( c u r V a l u e   *   1 )  
 	 	 	   p r e v _ n a m e =   f o r m _ f i e l d . n a m e ;  
 	 	 	   c u r V a l u e = 0 ;  
 	 	 	   i s S p e c Q   =   0  
 	 	 }   / /   f i e l d   c h e c k e d   b y   u s e r  
 	 	 e l s e  
 	 	 {  
 	 	 / /   i s S p e c Q   =   0 ; 	  
 	 	 / /   k e e p   g o i n g  
 	 	         i f (   f o r m _ f i e l d . n a m e   = =   " m 1 "   )  
 	 	         	 c u r V a l u e   =   0 ;  
 	 	 } 	  
 	 }   / /   i f   f i e l d   c h e c k   b y   u s e r  
 	      
         } 	 / /   m a i n   f o r   l o o p  
  
       v a r   t x t R e s u l t s = " " ;  
       t x t R e s u l t s   =   " Y o u r   T o t a l   H e a l t h C h e k ( c )   i s   "   +   y o u r S c o r e 	  
       w o r k i n g A r r a y [ 0 ]   =   " Y o u r   T o t a l   H e a l t h C h e k ( c )   i s   "   +   y o u r S c o r e ;  
   	 m e s s a g e   =   " " ;  
   	 i f (   y o u r S c o r e   = =   1 0 0   )  
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =     s c o r e _ h i g h _ s t r   +   " < B R > " ;  
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
  
 	 }  
 	 e l s e   i f (   y o u r S c o r e   >   8 9   )  
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =     s c o r e _ h i g h _ s t r   +   " < B R > " ;  
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
  
 	 }  
 	 e l s e   i f (   y o u r S c o r e   >   7 9   )  
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =     s c o r e _ 8 0 _ 8 9   +   " < B R > "    
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
  
 	 }  
 	 e l s e   i f (   y o u r S c o r e   >   6 9   )  
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =   s c o r e _ 7 0 _ 7 9   +   " < B R > "   ;  
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
 	 }  
 	 e l s e   i f (   y o u r S c o r e   >   5 9   )  
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =     s c o r e _ 6 0 _ 6 9   +   " < B R > "   ;  
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
 	 }  
 	 e l s e    
 	 {  
 	 	 w o r k i n g A r r a y [ 2 ]   =   s c o r e _ 0 _ 5 9   +   " < B R > "   ;  
 	 	 w o r k i n g A r r a y [ 3 ]   =   g e n e r a l _ a d v i c e _ s t r ;  
 	 }  
 	  
 	 f o r   (   v a r   m   =   0 ;   m   <   4 0 ;   m + +   )  
 	 {  
 	 	   i f   (   w o r k i n g A r r a y [ m ]   ! =   " "   )  
 	 	   {  
 	 	 	 / /   d o c u m e n t . w r i t e (   w o r k i n g A r r a y [ m ]   +   " < B R > "   ) ;  
 	 	 	   m e s s a g e   + =   w o r k i n g A r r a y [ m ]   + " < B R > " ;  
 	 	   }  
 	 }  
 	 f o r   (   v a r   m   =   4 1 ;   m   <   5 3 ;   m + +   )  
 	 	 i f   ( w o r k i n g A r r a y [ m ]   ! =   " "   )  
 	 	 	 m e s s a g e 2   + =   w o r k i n g A r r a y [ m ]   + " < B R > " ;  
 	 	  
 	  
 	 	  
     a l e r t ( " * * * *   T H A N K   Y O U   F O R   T A K I N G   T H E   H E A L T H   S U R V E Y   * * * * "     ) ;  
       / /   U S E   P H P   t o   d i s p l a y   t h e s e   f i e l d s   t o   t h e   u s e r  
       / /   R E S U L T S   1  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 " ) . v a l u e   =   m e s s a g e   ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 " ) . v a l u e   =   m e s s a g e 2 ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 3 ] ;       / /   q 1  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 4 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 1 ] ;       / /   q 2  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 5 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 2 ] ;       / /   q 3  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 6 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 4 ] ;       / /   q 4  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 7 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 5 ] ;       / /   q 1 0  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 8 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 6 ] ;       / /   q 2 5  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 9 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 7 ] ;       / /   q 2 7  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 0 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 8 ] ;     / /   q 3 5  
  
       / /   R E S U L T S   2  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 1 " ) . v a l u e   =   w o r k i n g A r r a y [ 4 9 ] ;     / /   q 3 7  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 2 " ) . v a l u e   =   w o r k i n g A r r a y [ 5 0 ] ;     / /   q 3 8  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 3 " ) . v a l u e   =   w o r k i n g A r r a y [ 5 1 ] ;     / /   q 4 1  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 4 " ) . v a l u e   =   w o r k i n g A r r a y [ 5 2 ] ;     / /   q 4 2  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 5 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 4 ] ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 6 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 5 ] ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 7 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 6 ] ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 8 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 7 ] ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 1 9 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 8 ] ;  
         d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 0 " ) . v a l u e   =   w o r k i n g A r r a y [ 1 9 ] ;  
      
       / /   R E S U L T S   3      
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 1 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 0 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 2 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 1 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 3 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 2 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 4 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 3 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 5 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 4 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 6 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 5 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 7 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 6 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 8 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 7 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 2 9 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 8 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 0 " ) . v a l u e   =   w o r k i n g A r r a y [ 2 9 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 1 " ) . v a l u e   =   w o r k i n g A r r a y [ 3 0 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 2 " ) . v a l u e   =   w o r k i n g A r r a y [ 3 1 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 3 " ) . v a l u e   =   w o r k i n g A r r a y [ 3 2 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 4 " ) . v a l u e   =   w o r k i n g A r r a y [ 3 3 ] ;  
       d o c u m e n t . g e t E l e m e n t B y I d ( " h i d 3 5 " ) . v a l u e   =   w o r k i n g A r r a y [ 3 4 ] ;  
      
 }   / /   c a l c u l a t e  
  
 
