ÿþv a r   n e w W i n d o w   =   n u l l ; 
 
 
 
 f u n c t i o n   c l o s e W i n ( ) { 
 
 	 i f   ( n e w W i n d o w   ! =   n u l l ) { 
 
 	 	 i f ( ! n e w W i n d o w . c l o s e d ) 
 
 	 	 	 n e w W i n d o w . c l o s e ( ) ; 
 
 	 } 
 
 } 
 
 
 
 f u n c t i o n   p o p U p W i n ( u r l ,   t y p e ,   s t r W i d t h ,   s t r H e i g h t ) { 
 
 	 
 
 	 c l o s e W i n ( ) ; 
 
 	 
 
 	 i f   ( t y p e   = =   " f u l l S c r e e n " ) { 
 
 	 	 s t r W i d t h   =   s c r e e n . a v a i l W i d t h   -   1 0 ; 
 
 	 	 s t r H e i g h t   =   s c r e e n . a v a i l H e i g h t   -   1 0 ; 
 
 	 } 
 
 	 
 
 	 v a r   t o o l s = " " ; 
 
 	 i f   ( t y p e   = =   " s t a n d a r d " )   t o o l s   =   " r e s i z a b l e = y e s , t o o l b a r = y e s , l o c a t i o n = y e s , s c r o l l b a r s = y e s , m e n u b a r = y e s , w i d t h = " + s t r W i d t h + " , h e i g h t = " + s t r H e i g h t + " , t o p = 0 , l e f t = 0 " ; 
 
 	 i f   ( t y p e   = =   " f u l l S c r e e n " )   t o o l s   =   " r e s i z a b l e = y e s , t o o l b a r = n o , l o c a t i o n = n o , m e n u b a r = n o , s c r o l l b a r s = y e s , w i d t h = " + s t r W i d t h + " , h e i g h t = " + s t r H e i g h t + " , l e f t = 0 , t o p = 0 " ; 
 
 	 i f   ( t y p e   = =   " c o n s o l e 1 " )   t o o l s   =   " r e s i z a b l e = y e s , t o o l b a r = n o , l o c a t i o n = n o , s c r o l l b a r s = y e s , w i d t h = " + s t r W i d t h + " , h e i g h t = " + s t r H e i g h t + " , l e f t = 0 , t o p = 0 " ; 
 
                 i f   ( t y p e   = =   " c o n s o l e 2 " )   t o o l s   =   " r e s i z a b l e = y e s , t o o l b a r = y e s , l o c a t i o n = n o , m e n u b a r = y e s , s c r o l l b a r s = y e s , w i d t h = " + s t r W i d t h + " , h e i g h t = " + s t r H e i g h t + " , l e f t = 0 , t o p = 0 " ; 
 
                 i f   ( t y p e   = =   " c o n s o l e 3 " )   t o o l s   =   " r e s i z a b l e = n o , t o o l b a r = n o , l o c a t i o n = n o , m e n u b a r = n o , s c r o l l b a r s = n o , w i d t h = " + s t r W i d t h + " , h e i g h t = " + s t r H e i g h t + " , l e f t = 0 , t o p = 0 " ; 
 
 	 n e w W i n d o w   =   w i n d o w . o p e n ( u r l ,   ' n e w W i n ' ,   t o o l s ) ; 
 
 	 n e w W i n d o w . f o c u s ( ) ; 
 
 } 
 
 
