HTML = "<html><body topmargin=\"0\" leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\">" +
"<form name=\"fm\"><table width=\"100%\" height=\"100%\"><tr><td align=\"center\"><input " +
"type=\"text\" name=\"msg\" size=\"16\" " +
"value=\"Loading ••••\"></td></tr></table></form></body></html>"

wn = window.open("","win","width=150,height=100,top=200,left=200")
wn.focus(); wn.document.write(HTML); wn.document.close(HTML); end = 1; dots = "•"
count = 0; Time = setTimeout("Loading()",100)

function Loading() {
	count++; clearTimeout(Time); wn.focus()
	wn.document.fm.msg.value = "Loading " + dots; dots += "•"
	if (end > 5) { end = 1; dots = "•" } else { end++ }
	Time = setTimeout("Loading()",100)
	if (count > 60) { clearTimeout(Time); wn.close() }
}


