þÿ < ! - -  
 f u n c t i o n   o p e n A r t i c l e ( u r l )  
 {  
 	 i f ( u r l = = ' ' )  
 	 	 r e t u r n ;  
 	 v a r   o p t i o n   =   " " ;  
 	 w i n d o w . o p e n ( u r l , ' ' , o p t i o n ) ;  
 }  
  
 v a r   i s D O M   =   ( d o c u m e n t . g e t E l e m e n t B y I d   ?   t r u e   :   f a l s e ) ;    
 v a r   i s I E 4   =   ( ( d o c u m e n t . a l l   & &   ! i s D O M )   ?   t r u e   :   f a l s e ) ;  
 v a r   i s N S 4   =   ( d o c u m e n t . l a y e r s   ?   t r u e   :   f a l s e ) ;  
 f u n c t i o n   g e t R e f ( i d )    
 {  
 	 i f   ( i s D O M )   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 ( i d ) ;  
 	 i f   ( i s I E 4 )   r e t u r n   d o c u m e n t . a l l [ i d ] ;  
 	 i f   ( i s N S 4 )   r e t u r n   d o c u m e n t . l a y e r s [ i d ] ;  
 }  
  
 f u n c t i o n   o p e n N o t i c e ( u r l , w i n O p t i o n )  
 {  
 	 i f ( u r l = = ' ' )  
 	 	 r e t u r n ;  
 	 w i n d o w . o p e n ( u r l , ' ' , w i n O p t i o n ) ;  
 }  
  
 f u n c t i o n   o p e n W i n ( u r l , l e f t , t o p , w i d t h , h e i g h t )  
 {  
 	 i f ( u r l = = ' ' )  
 	 	 r e t u r n ;  
 	 v a r   w i n O p t i o n   =   " t o o l b a r = n o , l o c a t i o n = n o , d i r e c t o r i e s = n o , s t a t u s = n o , m e n u b a r = n o , s c r o l l b a r s = y e s , r e s i z a b l e = y e s , w i d t h = " + w i d t h + " , h e i g h t = " + h e i g h t + " , l e f t = " + l e f t + " , t o p = " + t o p ;  
 	 w i n d o w . o p e n ( u r l , ' ' , w i n O p t i o n ) ;  
 	 r e t u r n ;  
 }  
  
 f u n c t i o n   o p e n W i n ( u r l , l e f t , t o p , w i d t h , h e i g h t , r e s i z a b l e )  
 {  
 	 i f ( u r l = = ' ' )  
 	 	 r e t u r n ;  
 	 v a r   w i n O p t i o n   =   " t o o l b a r = n o , l o c a t i o n = n o , d i r e c t o r i e s = n o , s t a t u s = n o , m e n u b a r = n o , s c r o l l b a r s = y e s , r e s i z a b l e = " + r e s i z a b l e + " , w i d t h = " + w i d t h + " , h e i g h t = " + h e i g h t + " , l e f t = " + l e f t + " , t o p = " + t o p ;  
 	 w i n d o w . o p e n ( u r l , ' ' , w i n O p t i o n ) ;  
 	 r e t u r n ;  
 }  
 / / - - >
