function scroll(seed)
	       {

		    var m1 = "Do you like this page?  Then Send it to a friend by E-Mail...... "
		    var m2 = " Just click on the Mail To A Friend Banner and follow the instructions given! "
		    var m3 = " Mike would like to thank you for visiting this site ...... :O)"
		    var msg=m1+m2+m3;
		    var out = " ";
		    var c = 1;
		    if (seed > 100) {
			  seed--;
			  var cmd="scroll(" + seed + ")";
			  timerTwo=window.setTimeout(cmd,100);
		    }
		    else if (seed <= 100 && seed > 0) {
			  for (c=0 ; c < seed ; c++) {
			     out+=" ";
			  }
			  out+=msg;
			  seed--;
			  var cmd="scroll(" + seed + ")";
			   window.status=out;
			  timerTwo=window.setTimeout(cmd,100);
		    }  else if (seed <= 0) {
			  if (-seed < msg.length) {
			     out+=msg.substring(-seed,msg.length);
			     seed--;
			     var cmd="scroll(" + seed + ")";
			     window.status=out;
			     timerTwo=window.setTimeout(cmd,100);
			  }
			  else {
			     window.status=" ";
			     timerTwo=window.setTimeout("scroll(100)",7);
			  }
		    }
	       }
	       timerONE=window.setTimeout('scroll(100)',50);
	       