function widget_latest_products($args)
{
    global $wpdb, $table_prefix;
    extract($args);
    $title = empty($options['title']) ? __(TXT_WPSC_LATEST_PRODUCTS) : $options['title'];
    echo $before_widget . "<br>";
    $full_title = $before_title . $title . $after_title;
    echo $full_title . "<br>";
    nzshpcrt_latest_product();
    echo $after_widget;
}
function widget_latest_products($args)
{
    global $wpdb, $table_prefix;
    extract($args);
    $options = get_option('wpsc-widget_latest_products');
    $title = empty($options['title']) ? __(__('Latest Products', 'wpsc')) : $options['title'];
    echo $before_widget . "<br />";
    $full_title = $before_title . $title . $after_title;
    echo $full_title . "<br />";
    nzshpcrt_latest_product();
    echo $after_widget;
}