function tx_wwscloedata_pi2_loadUserDetails(pid, uid, lang) {
  var el = $('tx_wwscloedata_pi2-detailDisplay');
  var ajax = new Ajax('index.php?id=' + pid + '&L=' + lang + '&type=99&tx_wwscloedata_pi2[showUid]=' + uid, {
    method: 'get',
    evalScripts: true,
    //evalResponse: true,
    update: el
  });

  ajax.request();
}

function tx_wwscloedata_pi2_initUserDetailForm() {
  var el = $('tx_wwscloedata_pi2-detailDisplay');
  var fx = new Fx.Styles(el, { duration:200, wait:false });

  el.makeDraggable({
    handle: el/*,
    onStart: function() { fx.start({ 'opacity': 0.85 }); },
    onComplete: function() { fx.start({ 'opacity': 1.0 }); }
    */
  });
}

function tx_wwscloedata_pi2_hideUserDetailForm() {
  var el = $('tx_wwscloedata_pi2-detailDisplay');
  el.empty();
}

