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