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