4751573f6062da85435e345520a7525e91a897eaAllen Rabinovichvar myuploadfield = Y.one("#fileupload").on("change", function (ev) {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich var myfiles = ev.target.getDOMNode().files;
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich var myfile = new Y.File({file: myfiles[0]});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.one("#startupload").on("click", function () {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.startUpload("upload.php", {foo: "bar", bar: "bazz", etc: "mooha"});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.one("#cancelupload").on("click", function () {