/*
$HeadURL: svn+secure://svn.comminternet.com/main/websites/innoftreasuredmemories.com/trunk/web/common/framework/javascript/Form.js $
$LastChangedRevision: 6604 $
$LastChangedDate: 2009-06-10 10:40:15 -0400 (Wed, 10 Jun 2009) $
*/

function __CX_Form_SetPageAction(pForm, pPageAction, pFieldIndex)
{
    pForm.__CX_Form_pageAction.value = pPageAction;

    if (window.document.documentElement && window.document.documentElement.scrollTop)
	pForm.__CX_Form_scrollTop.value = window.document.documentElement.scrollTop;
    else if (window.document.body)
	pForm.__CX_Form_scrollTop.value = window.document.body.scrollTop;

    if (typeof(pFieldIndex) != "undefined")
	pForm.__CX_Form_fieldIndex.value = pFieldIndex;
}

function __CX_Form_ScrollTo(pLocation)
{
    if (window.document.documentElement && typeof(window.document.documentElement.scrollTop) != "undefined")
	window.document.documentElement.scrollTop = pLocation;
    else if (window.document.body)
	window.document.body.scrollTop = pLocation;
}
