This is working great, but if I use the following two functions, it stops working, and will start seeing the table again
function CuteWebUI_AjaxUploader_OnError(msg)
{
alert("global error:"+msg);
return false;
}
function CuteWebUI_AjaxUploader_OnTaskError(obj,msg,reason)
{
alert("file error:"+obj.FileName+" , "+msg);
return false;
}