$_REQUEST['my_pass'] = $site_pass;
            $_REQUEST['carrier'] = $carrier;
            $_REQUEST['action'] = 'COMMENCEUPLOAD';
            echo "<center><b>Use Default login/pass...</b></center>\n";
        } else {
            html_error('Not all required values were set. Either enter your user and pass and account type, or enter them inside the file.');
        }
    } else {
        $_REQUEST['action'] = 'COMMENCEUPLOAD';
    }
}
try {
    //initiate the RS uploader class
    $rs = new RS($lfile, $_REQUEST['carrier']);
    //upload the file
    $rs->upload();
    echo "<script>document.getElementById('progressblock').style.display='none';</script>";
    $download_link = $rs->download_link;
    $delete_link = $rs->delete_link;
} catch (Exception $e) {
    html_error($e->getMessage());
}
class RS
{
    /////Only change the values below if you know what you are doing, or if you want to experiment!
    public $file;
    // the full path to the file we want to upload
    public $uploadpath = 'l3';
    // depending on your [server|pc] location you can change this to any of the carriers rs.com uses such as 'cg' or others
    public $download_link;
    public $delete_link;