ÿþ 
 f u n c t i o n   l a n d ( r e f ,   t a r g e t )  
 {  
 l o w t a r g e t = t a r g e t . t o L o w e r C a s e ( ) ;  
 i f   ( l o w t a r g e t = = ' _ s e l f ' )   { w i n d o w . l o c a t i o n = l o c ; }  
 e l s e   { i f   ( l o w t a r g e t = = ' _ t o p ' )   { t o p . l o c a t i o n = l o c ; }  
 e l s e   { i f   ( l o w t a r g e t = = ' _ b l a n k ' )   { w i n d o w . o p e n ( l o c ) ; }  
 e l s e   { i f   ( l o w t a r g e t = = ' _ p a r e n t ' )   { p a r e n t . l o c a t i o n = l o c ; }  
 e l s e   { p a r e n t . f r a m e s [ t a r g e t ] . l o c a t i o n = l o c ; } ;  
 } } }  
 }  
 f u n c t i o n   j u m p ( m e n u )  
 {  
 r e f = m e n u . c h o i c e . o p t i o n s [ m e n u . c h o i c e . s e l e c t e d I n d e x ] . v a l u e ;  
 s p l i t c = r e f . l a s t I n d e x O f ( ' * ' ) ;  
 t a r g e t = ' ' ;  
 i f   ( s p l i t c ! = - 1 )  
 { l o c = r e f . s u b s t r i n g ( 0 , s p l i t c ) ;  
 t a r g e t = r e f . s u b s t r i n g ( s p l i t c + 1 , 1 0 0 0 ) ; }  
 e l s e   { l o c = r e f ;   t a r g e t = ' _ s e l f ' ; } ;  
 i f   ( r e f   ! =   ' ' )   { l a n d ( l o c , t a r g e t ) ; }  
 }  
 
