function event_request( order )
{
  var arrParam = new Array();
  arrParam["title"] = "EA SPORTS Άβ FIFA ONLINE 2";
  go_event_request( order, arrParam );
}

function go_event_request( order, arrParam )
{
  var oAjax = new Ajax();
  arrParam['order_type'] = order;
  oAjax.sendRequest("http://fifaonline.pmang.com/event/ez_request.nwz", arrParam, "GET", "go_event_request.result", "JSON", false);

  function go_event_request.result( obj )
  {
    var arrParam = new Array();
    arrParam["title"] = "EA SPORTS Άβ FIFA ONLINE 2";
    arrParam['url'] = "http://www.pmang.com/gamepub/gamepub_modal_pop.nwz";
    var ucheck = false;

    switch( obj.msg_type )
    {
      case "confirm" :
        ucheck = pub_confirm( obj.msg, arrParam );
        break;
      case "alert" :
        pub_alert( obj.msg, arrParam );
        ucheck = true;
        break;
      default :
        ucheck = true;
    }

    if( ucheck )
    {
      var type = obj.nurl_type.split(":");
      switch( type[0] )
      {
        case "blank" :
          open_window( obj.nurl, type[0], "" );
          break;
        case "popup" :
          open_win( obj.nurl, type[0], type[1], type[2] );
          break;
        case "javascriptreload" :
          location.href = location.href;
          break;
        case "javascriptclose" :
          self.close();
          break;
        case "objTagID" :
          document.getElementById( type[1] ).style.display = type[2];
          break;
      }
    }
  }
}s