/**
 *NÃO PERMITE QUE POPUP SEJA RECARREGADA AO PASSO QUE A JANELA PAI É RECARREGADA...
 * url= http://www.htmlcodetutorial.com/linking/linking_famsupp_89.html
 */
<!--
function popupnr(mylink, windowname, refocus)
{
    var mywin, href;

    if (typeof(mylink) == 'string')
        href=mylink;
    else
        href=mylink.href;
    mywin = window.open('', windowname,"scrollbars=no,width=700,height=300");

    // if we just opened the window
    if (
        mywin.closed ||
        (! mywin.document.URL) ||
        (mywin.document.URL.indexOf("about") == 0)
            )
        mywin.location=href;
    else if (refocus)
        mywin.focus();
    return false;

}
        //-->

