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