function CheckUIElements()
{
        var yMenu1From, yMenu1To, yOffset, timeoutNextCheck;
        var wndWidth = parseInt(document.body.clientWidth);

                yMenu1From   = parseInt (BANNER.style.top, 10);
                yMenu1To     = document.body.scrollTop + 600; 

        timeoutNextCheck = 500;

        if ( yMenu1From != yMenu1To ) {
                yOffset = Math.ceil( Math.abs( yMenu1To - yMenu1From ) / 20 );
                if ( yMenu1To < yMenu1From )
                        yOffset = -yOffset;

		BANNER.style.top = parseInt (BANNER.style.top, 10) + yOffset;

                timeoutNextCheck = 10;
        }

        setTimeout ("CheckUIElements()", timeoutNextCheck);
}

function MovePosition()
{
        var wndWidth = parseInt(document.body.clientWidth);
        
                BANNER.style.top = document.body.scrollTop + 200;

                BANNER.style.visibility = "visible";

        CheckUIElements();
//        OrderType();

        return true;
}

