function pp_opener(lnk, cl, fwd)
{
    if (!(window.focus && window.opener))
    {
        return true;
    }
    
    window.opener.focus();
    
    if (fwd)
    {
        window.opener.location.href = lnk.href;
    }
    
    if (cl)
    {
        window.close();
    }
    
    return false;
}
