
   
   
	var position=0;
	var max	= m1.length;

	
	if (max<120) max=120;
	
	
	var bN = navigator.appName; 
	if (bN=='Netscape')
	{	if (typ==1)
		typ=2;
	}
	
	
	function message()
	{
		
	  	var i,k,msg=m1;
	  	var timeout;
  
	
  		k=(66/msg.length)+1;
  		for(i=0;i<=k;i++) msg+=" "+msg;


			if (typ==1)
	    	{
				
				document.title=msg.substring(position,position+70);
				
    		}
			
			else if (typ==2)
	    	{
				window.status=msg.substring(position,position+120);
			
    		}
			
			else if (typ==3)
	    	{  
				document.messageform.messagetext.value=msg.substring(position,position+max);
    		}	

			
			if(position++==max) position=0;
	
	
 	 timeout=setTimeout("message()",1000/speed); 
	}



