var lc_strImgUrl = '';

function onLcContentPageLoaded_realImageChangeHandler()
{
    var strImgUrl = lc_strImgUrl;

    try
    {
        if(top.actionImageFrame){top.actionImageFrame.document.getElementById('actionimage').src=strImgUrl; } else { top.contentFrame.actionImageFrame.document.getElementById('actionimage').src=strImgUrl; }
    }
    catch(ex)
    {
        window.setTimeout('onLcContentPageLoaded_realImageChangeHandler()', 100);
        return;
    }
}

function onLcContentPageLoaded_imageChangeHandler(strImgUrl)
{
    lc_strImgUrl = strImgUrl;
    onLcContentPageLoaded_realImageChangeHandler();
}