
var startpos=0;
var endpos=1;

var scrtxt="VALVE & FITTING SPECIALISTS *"+	
	   "Please visit the 'Products' page *"+
	   "Thank you for visiting salconvalve.com#";

function scroll()
{
	var scroller="";
	scroller=scrtxt.substring(startpos,endpos);
	document.myname.stxt.value = scroller;
	endpos++;
	if (scrtxt.substring(endpos-1,endpos)=='#')
	{
		startpos=0; endpos=1; setTimeout("scroll()",1500);
	}
	else
		if (scrtxt.substring(endpos-1,endpos)=='*')
		{
			startpos=endpos; endpos++; setTimeout("scroll()",1500);
		}
		else
		
			setTimeout("scroll()",100);
		
}	
