R={};
R.c1=function(){
 $.post('ajax/index/f1',{a:123},function(d){$('#data').html(d).fadeIn('slow');},'html');
}

R.l1_rf=function(d){
  if (d.ok) {document.location+='';}
}
R.l1=function(){  
  $.post('ajaxm/auth/login',{'un':$('#un').val(),'psw':$('#psw').val()},R.l1_rf,'json');
}
R.l2_rf=function(d){
  document.location+='';
}
R.l2=function(){
  $.post('ajaxm/auth/logout',{a:2},R.l2_rf,'html');
}