	var Scroll=""
	var wiper
	var index=0
	var space=" "
	reset();

	function reset()
	{
	text = new Array(4)
	var textnr=Math.round((Math.random()*4))
	text[0]="Welcome to The Millom Advertiser Web Page...................."
	text[1]="Why not contact us to add your own advertisement to this page ?..................."
	text[2]="Web site created by Doctor Muffet .....................©"
	text[3]="When you contact a business please mention this web page ....................."
	text[4]=" "
              Scroll=text[textnr]
	index=0
	main()
	}

	function main()
	{
	window.status=Scroll.substring(0,index)
	index++
	if(index==(Scroll.length+4)){setTimeout('reset_clear()',300);}
	else{setTimeout('main()',50)}
	}

	function reset_clear()
	{
	index=0
	wiper=""
	for(var a=0;a<Scroll.length;a++){wiper+=space}
	clearem()
	}
	function clearem()
	{
	window.status=wiper.substring(0,index) + "->" + Scroll.substring(index+2,Scroll.length)
	index++
	if(index==(Scroll.length+4)){reset()}
	else{setTimeout('clearem()',50)}
	}

