
function fSetOutLinkIframe(url)
{
    var h = document.body.scrollHeight;
    try
    {
        var iframehide = document.getElementById('resetiframe');
        iframehide.src=url+"/resetiframe.html?h="+ h ;
        if(domainurl!="")
        {
          iframehide.src=domainurl+"/resetiframe.html?h="+ h ;
        }
    }
    catch(e)
    {
    }
}

