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