if (typeof kdpList === 'undefined') {
    var kdpList = [];
}

function PauseOtherPlayerFunction(playerId) {
    for (i = 0; i < kdpList.length; i++) {
        if (kdpList[i] != playerId) {
            kdpList[i].sendNotification("doPause");
        }
    }
}

