Rev 21090 | Blame | Compare with Previous | Last modification | View Log | RSS feed
function loadNewUserForm(pos,referrerEmail){jQuery.ajax({type : "GET",url : "/Support/pmsa/pmsa-add-user?referrerEmail="+referrerEmail,success : function(response) {$('#' + pos).html(response);}});}function loadSearchUserForm(pos){jQuery.ajax({type : "GET",url : "/Support/pmsa/pmsa-search-user",success : function(response) {$('#' + pos).html(response);}});}function loadUserForm(pos, userId){jQuery.ajax({type : "GET",url : "/Support/pmsa!edit?id="+userId,success : function(response) {$('#' + pos).html(response);}});}function loadMyProfile(pos){jQuery.ajax({type : "GET",url : "/Support/pmsa!myProfile",success : function(response) {$('#' + pos).html(response);}});}