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