function startCallback(where, first) {
  //if(where=="album")
//    demoApp.promtForNew('_uigallery=' + first);
  //if(where=="user")
//    demoApp.promtForNew('empty');
	// make something useful before submit (onStart)
	
	return true;
}

function completeCallback(where, second, third) {
if(where=="album")
{
  //demoApp.promtForNew('empty');
  demoApp.promtForNew('home');
  demoApp.promtForNew('gallery=' + second);
  //demoApp.promtForNew('_ugaid=' + third);
}
if(where=="user")
{
  demoApp.promtForNew('home');
  demoApp.promtForNew('_mysettings=1');
}
return true;
//demoApp.promtForNew('_ugaid=' + second);
// make something useful after (onComplete)
}
