if (isNS4) {
	var txtPageCodeRespond = document["txtPageCodeRespond"];
	txtPageCodeRespond.top = top.pageYOffset + 250;
	txtPageCodeRespond.visibility = "visible";
	moveRightEdge();
} else if (isDOM) {

	var txtPageCodeRespond = getRef('txtPageCodeRespond');
	txtPageCodeRespond.style.top = (isNS ? window.pageYOffset : document.body.scrollTop) + 250;
	txtPageCodeRespond.style.visibility = "visible";
	moveRightEdge();
}

