<!--
// Michael P. Scholtis (mpscho@planetx.bloomu.edu)
// All rights reserved.  January 19, 1996
// You may use this JavaScript example as you see fit, as long as the
// information within this comment above is included in your script.
	var timerID = null;
	var timerRunning = false;
	var id,pause=0,position=0;
	function marquee() 
		{
		var i,k,msg="                  ΔΩΡΕΑΝ Ηλεκτρονικό Περιοδικό: <<Η Προσωπική σου Επιτυχία>>.          ";
		k=(75/msg.length)+1;
		for(i=0;i<=k;i++) msg+=" "+msg;
		document.marqueeform.marquee.value=msg.substring(position,position+120);
		if(position++==82) position=0;
		id=setTimeout("marquee()",1000/8); 
		}
	function action() 
		{
		if(!pause) 
			{
			clearTimeout(id);
			pause=1; 
			}
		else 
			{
			marquee();
			pause=0;
			} 
		}
// -->