function Notice() {
	if (navigator.appName.search(/explorer/i) != -1 || navigator.appVersion.search(/5.0/) != -1) {
		xCoord = document.body.scrollLeft; yCoord = document.body.scrollTop
	} else {
		xCoord = self.pageXOffset; yCoord = self.pageYOffset
	}

	box = document.getElementById("alertpop")
	box.style.left = xCoord + 300; box.style.top = yCoord + 100

	box.style.visibility = "visible"
	t = setTimeout("Notice()",100)
}

function EraseNotice() {
	clearTimeout(t); box = document.getElementById("alertpop"); box.style.visibility = "hidden"
}
