
var upload_destination = "";

function build_destination_url(){
            gallery_id = "";

            format = $('#thumb_file_type').val();
            size = $('#thumb_size').val();
            croporresize = $('#thumb_aspect_ratio').val();
            sfw = $('#content_type').val();

            if(sfw=='x'){
                alert('Please select the content type and click upload again.');
                return;
            }

            upload_destination = base_url+"/"+format+"/"+size+"/"+croporresize+"/0/"+sfw+"/"


            if($('#gallery_options').attr('checked')){
               gallery_id = new_gallery_id;
            }

            upload_destination += gallery_id;
            startUpload();


}



function startUpload(){
            $('#urlout').text(upload_destination);

            uploader.settings.url = upload_destination;
            uploader.start();

            $('#form_content').hide();
            $('#upload_options').hide();
            $('#pickfiles').hide();
            $('#tip1').hide();
            $('#container').css("background-image", "none");
            $('#upload_info').show();
            $('#upload_info').css("display","inherit");
        }






       
