	var scrollMsg = "Call American Shoring for all of your shoring needs 1(800) 407-4674";
	var workingMsg = " ";
	var msgSpace = "---   ---";
	var beginPos = 0;
	var OnLine = 0; // 0 is on line - 1 is off line
	function scrollingMsg()
	{
		window.status=scrollMsg.substring(beginPos,scrollMsg.length)+msgSpace+scrollMsg.substring(0,beginPos);
		beginPos = beginPos + 1;
		if (beginPos > scrollMsg.length)
		{
			beginPos=0;
		}
		window.setTimeout("scrollingMsg()",200);
	}
	function isOnLine()
	{
       if(OnLine==1)
	  { 
	   return confirm('This link is for users with Internet connections.  If you are connected click on OK.');
	  }
	}

