function LGA_WebControls_SaveScrollPosition()
{
	if (typeof(document.getElementById) == "undefined") return;

	if (LGA_WebControls_SaveScrollPosition_Array.length % 2 != 0)
	{
		alert("SaveScrollPosition has a problem. Please check the page configuration.");
	}

	var control = document.getElementById(LGA_WebControls_SaveScrollPosition_Array[0]);

	if (control != null)
	{
		control.value = document.body.scrollLeft + LGA_WebControls_SaveScrollPosition_Array[1] + document.body.scrollTop;
	}
}

if (window.addEventListener)
{
	window.addEventListener('scroll', LGA_WebControls_SaveScrollPosition, false);
	window.addEventListener('click', LGA_WebControls_SaveScrollPosition, false);
	window.addEventListener('keypress', LGA_WebControls_SaveScrollPosition, false);
}
else
{
	window.attachEvent('onscroll', LGA_WebControls_SaveScrollPosition);
}