public ActionResult findbpo()
        {
            GenHelper g  = new GenHelper();
            DataTable dt = g.FindBpo(Request["vtype"], Convert.ToInt32(Session["divid"]));
            DataSet   ds = new DataSet();

            ds.Tables.Add(dt);
            return(PartialView("_findvoc", ds));
        }