//var fileref = document.createElement('script')
//fileref.setAttribute("type", "text/javascript")
//fileref.setAttribute("src", "../Utils.js")
//document.getElementsByTagName("head")[0].appendChild(fileref)

var formname="pgForm";
function PutPositions() {
	document.forms[formname].WindowXPos.value = document.body.scrollLeft;
	document.forms[formname].WindowYPos.value = document.body.scrollTop;
}
function ScrollWindow() {
	self.scrollTo(document.forms[formname].WindowXPos.value, document.forms[formname].WindowYPos.value);
	document.forms[formname].WindowXPos.value = 0;
	document.forms[formname].WindowYPos.value = 0;
}
