public void callback2() {
   ActionMainActivity a = (ActionMainActivity) this.getActivity();
   int i = html.indexOf("17732 - APA of Central Florida");
   if (i > 0) {
     ((TextView) a.findViewById(R.id.message_login)).setText("Logged in");
     WebViewFragment f = new WebViewFragment();
     f.html = html;
     a.changeFragment(f);
   } else {
     ((TextView) a.findViewById(R.id.message_login))
         .setText("Problems logging in please try again");
   }
 }