ÿþ/ *   - - - - - - - - - - - - - - - - - - - - - - - - - - - -   * /  
 / *   X M L H T T P R e q u e s t   E n a b l e   	 * /  
 / *   - - - - - - - - - - - - - - - - - - - - - - - - - - - -   * /  
 f u n c t i o n   c r e a t e O b j e c t ( )   {  
 	 v a r   r e q u e s t _ t y p e ;  
 	 v a r   b r o w s e r   =   n a v i g a t o r . a p p N a m e ;  
 	 i f ( b r o w s e r   = =   " M i c r o s o f t   I n t e r n e t   E x p l o r e r " ) {  
 	 r e q u e s t _ t y p e   =   n e w   A c t i v e X O b j e c t ( " M i c r o s o f t . X M L H T T P " ) ;  
 	 } e l s e {  
 	 	 r e q u e s t _ t y p e   =   n e w   X M L H t t p R e q u e s t ( ) ;  
 	 }  
 	 	 r e t u r n   r e q u e s t _ t y p e ;  
 }  
  
 v a r   h t t p   =   c r e a t e O b j e c t ( ) ;  
  
 / *   - - - - - - - - - - - - - - - - - - - - - - - - - -   * /  
 / *   S E A R C H 	 	             * /  
 / *   - - - - - - - - - - - - - - - - - - - - - - - - - -   * /  
 f u n c t i o n   a u t o n a m e ( )   {  
 q   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' u s e r n a m e ' ) . v a l u e ;  
 / /   S e t   t h e   r a n d o m   n u m b e r   t o   a d d   t o   U R L   r e q u e s t  
 n o c a c h e   =   M a t h . r a n d o m ( ) ;  
 h t t p . o p e n ( ' g e t ' ,   ' s e a r c h u s e r n a m e . c f m ? q = ' + q + ' & n o c a c h e   =   ' + n o c a c h e ) ;  
 h t t p . o n r e a d y s t a t e c h a n g e   =   a u t o n a m e R e p l y ;  
 h t t p . s e n d ( n u l l ) ;  
 }  
 f u n c t i o n   a u t o n a m e R e p l y ( )   {  
 i f ( h t t p . r e a d y S t a t e   = =   4 ) {  
 	 v a r   r e s p o n s e   =   h t t p . r e s p o n s e T e x t ;  
 	 i f ( r e s p o n s e ! = " " ) {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k u s e r n a m e ' ) . i n n e r H T M L = r e s p o n s e ;  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k u s e r n a m e ' ) . s t y l e . d i s p l a y = " b l o c k " ;  
 	 }   e l s e   {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k u s e r n a m e ' ) . s t y l e . d i s p l a y = " n o n e " ;  
 	 }  
 }  
 }  
  
 f u n c t i o n   c h e c k p a s s w o r d ( )   {  
 q 1   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' p a s s w o r d 1 ' ) . v a l u e ;  
 q 2   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' p a s s w o r d 2 ' ) . v a l u e ;  
 / /   S e t   t h e   r a n d o m   n u m b e r   t o   a d d   t o   U R L   r e q u e s t  
 n o c a c h e   =   M a t h . r a n d o m ( ) ;  
 h t t p . o p e n ( ' g e t ' ,   ' c h e c k p a s s w o r d . c f m ? p 1 = ' + q 1 +   ' & p 2 = ' + q 2 +   ' & n o c a c h e   =   ' + n o c a c h e ) ;  
 h t t p . o n r e a d y s t a t e c h a n g e   =   c h e c k p a s s w o r d R e p l y ;  
 h t t p . s e n d ( n u l l ) ;  
 }  
 f u n c t i o n   c h e c k p a s s w o r d R e p l y ( )   {  
 i f ( h t t p . r e a d y S t a t e   = =   4 ) {  
 	 v a r   r e s p o n s e   =   h t t p . r e s p o n s e T e x t ;  
 	 i f ( r e s p o n s e ! = " " ) {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k p a s s w o r d ' ) . i n n e r H T M L = r e s p o n s e ;  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k p a s s w o r d ' ) . s t y l e . d i s p l a y = " b l o c k " ;  
 	 }   e l s e   {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k p a s s w o r d ' ) . s t y l e . d i s p l a y = " n o n e " ;  
 	 }  
 }  
 }  
  
 f u n c t i o n   c h e c k e m a i l ( )   {  
 q 1   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' e m a i l a d d r e s s 1 ' ) . v a l u e ;  
 q 2   =   d o c u m e n t . g e t E l e m e n t B y I d ( ' e m a i l a d d r e s s 2 ' ) . v a l u e ;  
 / /   S e t   t h e   r a n d o m   n u m b e r   t o   a d d   t o   U R L   r e q u e s t  
 n o c a c h e   =   M a t h . r a n d o m ( ) ;  
 h t t p . o p e n ( ' g e t ' ,   ' c h e c k e m a i l . c f m ? e 1 = ' + q 1 +   ' & e 2 = ' + q 2 +   ' & n o c a c h e   =   ' + n o c a c h e ) ;  
 h t t p . o n r e a d y s t a t e c h a n g e   =   c h e c k e m a i l R e p l y ;  
 h t t p . s e n d ( n u l l ) ;  
 }  
 f u n c t i o n   c h e c k e m a i l R e p l y ( )   {  
 i f ( h t t p . r e a d y S t a t e   = =   4 ) {  
 	 v a r   r e s p o n s e   =   h t t p . r e s p o n s e T e x t ;  
 	 i f ( r e s p o n s e ! = " " ) {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k e m a i l a d d r e s s ' ) . i n n e r H T M L = r e s p o n s e ;  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k e m a i l a d d r e s s ' ) . s t y l e . d i s p l a y = " b l o c k " ;  
 	 }   e l s e   {  
 	 	 d o c u m e n t . g e t E l e m e n t B y I d ( ' c h e c k e m a i l a d d r e s s ' ) . s t y l e . d i s p l a y = " n o n e " ;  
 	 }  
 }  
 }  
 
