document.write _
	"<div id=loading style=""position:absolute;left:0px;top:0px;width:100%;height:100%;CURSOR: wait;"">" & _
	"<center>" & _
		"<div style=""POSITION: relative; TOP: 50%;"">" & _
			"<img src=""images/eim.gif"" border=0 alt=""EIM"">" & _
			"<img src=""images/PleaseWait.gif"" border=0 alt=""Loading...Please Wait"">" & _
			"<input class=cancel type=button value=Cancel onclick=""CancelLoad()"">" & _
		"</div>" & _
	"</center>" & _
	"</div>"

Sub Window_OnLoad()
	loading.style.display = "none"
End Sub

Sub CancelLoad()
	dim warn
	warn = confirm("Are you sure you want to cancel?")
	if warn then document.location.href = "./"
End Sub
