function Voltar( str_URL, str_flag )
{
    var num_PosP = str_URL.indexOf( str_flag + "=" );

    if ( num_PosP != -1 )
    {
        str_URL = str_URL.slice( 0, num_PosP - 1 );
    }

    window.location.href = str_URL;
}